VehicleDimensions
data class VehicleDimensions(val weight: Weight? = null, val axleWeight: Weight? = null, val length: Distance? = null, val width: Distance? = null, val height: 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
weight
Specifies the weight of the vehicle, for example in kilograms.
axleWeight
Specifies the weight per axle of the vehicle, e.g. in kg.
length
Specifies the length of the vehicle including the length of any additional equipment, e.g. trailers, bike racks, etc.
width
Specifies the width of the vehicle.
height
Specifies the height of the vehicle.