TollStructureType
public enum TollStructureType : UInt32, CaseIterable, Codable
This enum defines the type of toll structure used on a road segment or lane. Each value represents a different tolling mechanism used in road infrastructure. This enum helps in providing detailed tolling information for routing and navigation.
-
A toll with a fixed amount charged for using the segment
Declaration
Swift
case fixedFee = 0 -
The driver must obtain a ticket upon entry and pay upon exit
Declaration
Swift
case obtainTicket = 1 -
Toll is paid based on a pre-obtained or virtual ticket
Declaration
Swift
case payPerTicket = 2 -
Toll is collected electronically
Declaration
Swift
case electronic = 3