VehicleDimensionsProtocol

@objc
public protocol VehicleDimensionsProtocol

BETA Specifies the dimensions of the vehicle.

Experiment

THIS API IS IN BETA VERSION
  • Specifies the weight of the vehicle in kilograms.

    Declaration

    Swift

    @objc
    optional var vehicleWeightInKg: Int { get set }
  • Specifies the weight per axle of the vehicle in kg.

    Declaration

    Swift

    @objc
    optional var vehicleAxleWeightInKg: Int { get set }
  • Specifies the length of the vehicle in meters.

    Declaration

    Swift

    @objc
    optional var vehicleLengthInMeters: Double { get set }
  • Specifies the width of the vehicle in meters.

    Declaration

    Swift

    @objc
    optional var vehicleWidthInMeters: Double { get set }
  • Specifies the height of the vehicle in meters

    Declaration

    Swift

    @objc
    var vehicleHeightInMeters: Double { get set }