WeightPerAxleGroup Structure Reference
- Last UpdatedJun 10, 2025
- 1 minute read
public struct WeightPerAxleGroup : Hashable
Struct which defines the weight of the different axle groups of a truck. The provided value must be greater or equal to 0.
-
Single axle group in kilograms
Declaration
Swift
public var singleAxleGroupInKilograms: Int32?
-
Tandem axle group in kilograms
Declaration
Swift
public var tandemAxleGroupInKilograms: Int32?
-
Triple axle group in kilograms
Declaration
Swift
public var tripleAxleGroupInKilograms: Int32?
-
Quad axle group in kilograms
Declaration
Swift
public var quadAxleGroupInKilograms: Int32?
-
Quint axle group in kilograms
Declaration
Swift
public var quintAxleGroupInKilograms: Int32?
-
Creates a new instance.
Declaration
Swift
public init(singleAxleGroupInKilograms: Int32? = nil, tandemAxleGroupInKilograms: Int32? = nil, tripleAxleGroupInKilograms: Int32? = nil, quadAxleGroupInKilograms: Int32? = nil, quintAxleGroupInKilograms: Int32? = nil)