Module Values.RouteTollSource

Provides details about toll information along a route, including the payment sites, applicable toll rates, toll systems, and the country associated with the toll collection.

Sourcetype nonrec t = {
  1. country : CountryCode3.t option;
    (*

    The alpha-2 or alpha-3 character code for the country.

    *)
  2. paymentSites : RouteTollPaymentSiteList.t option;
    (*

    Locations or sites where the toll fare is collected.

    *)
  3. rates : RouteTollRateList.t option;
    (*

    Toll rates that need to be paid to travel this leg of the route.

    *)
  4. systems : IndexList.t option;
    (*

    Toll systems are authorities that collect payments for the toll.

    *)
}
Sourceval make : ?country:??? -> ?paymentSites:??? -> ?rates:??? -> ?systems:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Integer of Integer.t | `Structure of (string * [> `List of [> `Double of Double.t | `Enum of string | `Structure of (string * [> `String of SensitiveString.t ]) list ] list | `String of String_.t | `Structure of (string * [> `Boolean of SensitiveBoolean.t | `Double of RouteTollPriceValueDouble.t | `Integer of RouteTollPassTransferCountInteger.t | `Long of DurationSeconds.t | `String of CurrencyCode.t | `Structure of (string * [> `Double of RouteTollPriceValueRangeMinDouble.t | `Enum of string | `Integer of RouteTollPassValidityPeriodPeriodCountInteger.t ]) list ]) list ]) list ] list | `String of CountryCode3.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t