VehicleDetails

@Serializable
data class VehicleDetails(val vin: String? = null, val modelYear: Int? = null, val gearbox: String? = null, val fuelType: String? = null, val externalColour: String? = null, val batteryCapacityKWH: Double? = null, val images: VehicleImages? = null, val descriptions: VehicleDescriptions? = null)(source)

Detailed information about a vehicle.

Constructors

Link copied to clipboard
constructor(vin: String? = null, modelYear: Int? = null, gearbox: String? = null, fuelType: String? = null, externalColour: String? = null, batteryCapacityKWH: Double? = null, images: VehicleImages? = null, descriptions: VehicleDescriptions? = null)

Properties

Link copied to clipboard
@SerialName(value = "batteryCapacityKWH")
val batteryCapacityKWH: Double?
Link copied to clipboard
@SerialName(value = "descriptions")
val descriptions: VehicleDescriptions?
Link copied to clipboard
@SerialName(value = "externalColour")
val externalColour: String?
Link copied to clipboard
@SerialName(value = "fuelType")
val fuelType: String?
Link copied to clipboard
@SerialName(value = "gearbox")
val gearbox: String?
Link copied to clipboard
@SerialName(value = "images")
val images: VehicleImages?
Link copied to clipboard
@SerialName(value = "modelYear")
val modelYear: Int?
Link copied to clipboard
@SerialName(value = "vin")
val vin: String?