Vehicle

data class Vehicle(    val vehicleId: String?,     val model: String,     val manufacturer: String,     val year: Int,     val vehicleType: String)

Vehicle information

Constructors

Link copied to clipboard
fun Vehicle(    vehicleId: String?,     model: String,     manufacturer: String,     year: Int,     vehicleType: String)

Properties

Link copied to clipboard
val manufacturer: String

Manufacturer of the vehicle

Link copied to clipboard
val model: String

Model of the vehicle

Link copied to clipboard
val vehicleId: String?

Vehicle identifier

Link copied to clipboard
val vehicleType: String

Type of vehicle transport: Biking, Car, etc.

Link copied to clipboard
val year: Int

Year of the vehicle release