TollSystem

public struct TollSystem : Hashable

Contains informations about a toll system.

  • The name of the toll system.

    Declaration

    Swift

    public var systemName: String
  • The costs for the toll system.

    Declaration

    Swift

    public var tollCosts: [TollCost]
  • Creates a new instance.

    Declaration

    Swift

    public init(systemName: String, tollCosts: [TollCost] = [])