VehicleProfile

data class VehicleProfile(    val weight: Int = 1500,     val hazmat: HazmatSettings = HazmatSettings(),     val type: Int = LogisticInfoSettings.VehicleType.Car)

Constructors

Link copied to clipboard
fun VehicleProfile(    weight: Int = 1500,     hazmat: HazmatSettings = HazmatSettings(),     type: Int = LogisticInfoSettings.VehicleType.Car)

Properties

Link copied to clipboard
val hazmat: HazmatSettings
Link copied to clipboard
val type: Int
Link copied to clipboard
val weight: Int = 1500