CommandListResponse

@Serializable
data class CommandListResponse(val status: Int? = null, val operationId: String? = null, val data: List<Command>? = null)(source)

Vehicle command list response.

Constructors

Link copied to clipboard
constructor(status: Int? = null, operationId: String? = null, data: List<Command>? = null)

Properties

Link copied to clipboard
@SerialName(value = "data")
val data: List<Command>?
Link copied to clipboard
@SerialName(value = "operationId")
val operationId: String?
Link copied to clipboard
@SerialName(value = "status")
val status: Int?