DoorAndLockStatus

@Serializable
data class DoorAndLockStatus(val centralLock: ValueWithTimestamp<String>? = null, val frontLeftDoor: ValueWithTimestamp<String>? = null, val frontRightDoor: ValueWithTimestamp<String>? = null, val rearLeftDoor: ValueWithTimestamp<String>? = null, val rearRightDoor: ValueWithTimestamp<String>? = null, val hood: ValueWithTimestamp<String>? = null, val tailgate: ValueWithTimestamp<String>? = null, val tankLid: ValueWithTimestamp<String>? = null)(source)

Door and lock status values.

Constructors

Link copied to clipboard
constructor(centralLock: ValueWithTimestamp<String>? = null, frontLeftDoor: ValueWithTimestamp<String>? = null, frontRightDoor: ValueWithTimestamp<String>? = null, rearLeftDoor: ValueWithTimestamp<String>? = null, rearRightDoor: ValueWithTimestamp<String>? = null, hood: ValueWithTimestamp<String>? = null, tailgate: ValueWithTimestamp<String>? = null, tankLid: ValueWithTimestamp<String>? = null)

Properties

Link copied to clipboard
@SerialName(value = "centralLock")
val centralLock: ValueWithTimestamp<String>?
Link copied to clipboard
@SerialName(value = "frontLeftDoor")
val frontLeftDoor: ValueWithTimestamp<String>?
Link copied to clipboard
@SerialName(value = "frontRightDoor")
val frontRightDoor: ValueWithTimestamp<String>?
Link copied to clipboard
@SerialName(value = "hood")
val hood: ValueWithTimestamp<String>?
Link copied to clipboard
@SerialName(value = "rearLeftDoor")
val rearLeftDoor: ValueWithTimestamp<String>?
Link copied to clipboard
@SerialName(value = "rearRightDoor")
val rearRightDoor: ValueWithTimestamp<String>?
Link copied to clipboard
@SerialName(value = "tailgate")
val tailgate: ValueWithTimestamp<String>?
Link copied to clipboard
@SerialName(value = "tankLid")
val tankLid: ValueWithTimestamp<String>?