WeightPerAxleGroup
public struct WeightPerAxleGroup : Hashable
Struct which defines the weight of the different axle groups of a vehicle. The provided value must be greater or equal to 0.
-
Single axle group in kilograms. By default, it is not set.
Declaration
Swift
public var singleAxleGroupInKilograms: Int32? -
Tandem axle group in kilograms. By default, it is not set.
Declaration
Swift
public var tandemAxleGroupInKilograms: Int32? -
Triple axle group in kilograms. By default, it is not set.
Declaration
Swift
public var tripleAxleGroupInKilograms: Int32? -
Quad axle group in kilograms. By default, it is not set.
Declaration
Swift
public var quadAxleGroupInKilograms: Int32? -
Quint axle group in kilograms. By default, it is not set.
Declaration
Swift
public var quintAxleGroupInKilograms: Int32? -
init(singleAxleGroupInKilograms:tandemAxleGroupInKilograms: tripleAxleGroupInKilograms: quadAxleGroupInKilograms: quintAxleGroupInKilograms: ) Creates a new instance.
Declaration
Swift
public init(singleAxleGroupInKilograms: Int32? = nil, tandemAxleGroupInKilograms: Int32? = nil, tripleAxleGroupInKilograms: Int32? = nil, quadAxleGroupInKilograms: Int32? = nil, quintAxleGroupInKilograms: Int32? = nil)