VehicleDimensions

data class VehicleDimensions(    val vehicleWeightInKg: Int? = null,     val vehicleAxleWeightInKg: Int? = null,     val vehicleLength: Distance? = null,     val vehicleWidth: Distance? = null,     val vehicleHeight: Distance? = null)

Specifies the dimensions of the vehicle.

Important: This is a Public Preview API. It may be changed or removed at any time.

Parameters

vehicleWeightInKg

Specifies the weight of the vehicle in kilograms.

vehicleAxleWeightInKg

Specifies the weight per axle of the vehicle in kg.

vehicleLength

Specifies the length of the vehicle.

vehicleWidth

Specifies the width of the vehicle.

vehicleHeight

Specifies the height of the vehicle.

Constructors

Link copied to clipboard
fun VehicleDimensions(    vehicleWeightInKg: Int? = null,     vehicleAxleWeightInKg: Int? = null,     vehicleLength: Distance? = null,     vehicleWidth: Distance? = null,     vehicleHeight: Distance? = null)

Properties

Link copied to clipboard
val vehicleAxleWeightInKg: Int? = null
Link copied to clipboard
val vehicleHeight: Distance? = null
Link copied to clipboard
val vehicleLength: Distance? = null
Link copied to clipboard
val vehicleWeightInKg: Int? = null
Link copied to clipboard
val vehicleWidth: Distance? = null