VehicleDimensions
class VehicleDimensions(val weight: Weight? = null, val axleWeight: Weight? = null, val length: Distance? = null, val width: Distance? = null, val height: Distance? = null, val numberOfAxles: Int? = null)
The dimensions of a vehicle.
Note: The parameters axleWeight, length, width, height and numberOfAxles are not supported with the Orbis map.
Constructors
Properties
Functions
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
fun copy(weight: Weight? = this.weight, axleWeight: Weight? = this.axleWeight, length: Distance? = this.length, width: Distance? = this.width, height: Distance? = this.height, numberOfAxles: Int? = this.numberOfAxles): VehicleDimensions
Creates a copy of this VehicleDimensions object.