TyrePressureValue

@Serializable
data class TyrePressureValue(val value: String? = null, val timestamp: Instant? = null)(source)

Individual tyre pressure value.

Constructors

Link copied to clipboard
constructor(value: String? = null, timestamp: Instant? = null)

Properties

Link copied to clipboard
@SerialName(value = "timestamp")
val timestamp: Instant?
Link copied to clipboard
@SerialName(value = "value")
val value: String?