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.

Constructors

Link copied to clipboard
fun VehicleDimensions(weight: Weight? = null, axleWeight: Weight? = null, length: Distance? = null, width: Distance? = null, height: Distance? = null)

Properties

Link copied to clipboard
val axleWeight: Weight? = null
Link copied to clipboard
val height: Distance? = null
Link copied to clipboard
val length: Distance? = null
Link copied to clipboard
val weight: Weight? = null
Link copied to clipboard
val width: Distance? = null