VehicleListResponse

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

Response containing a list of vehicles associated with the user.

Constructors

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

Properties

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