RestrictionData
public struct RestrictionData : Equatable
Data corresponding to a single vehicle restriction.
Creates a single instance of the vehicle restriction data for a specific restriction type.
Declaration
Swift
public init(
restriction: RestrictionType,
violates: Bool
)
Parameters
restriction
|
Restriction to comply with such height, weight, length, width or a vehicle type. |
violates
|
Flag to indicate if the current vehicle profile violates the vehicle restriction. |
RestrictionType
to comply with.
Declaration
Swift
public let restriction: RestrictionType
Flag to indicate if the current vehicle profile violates the vehicle restriction.
Declaration
Swift
public let violates: Bool