Module Values.RouteTollRateSource

The toll rate.

Sourcetype nonrec t = {
  1. applicableTimes : SensitiveString.t option;
    (*

    Time when the rate is valid.

    *)
  2. convertedPrice : RouteTollPrice.t option;
    (*

    Price in the converted currency as specified in the request.

    *)
  3. id : SensitiveString.t option;
    (*

    The Toll rate Id.

    *)
  4. localPrice : RouteTollPrice.t option;
    (*

    Price in the local regional currency.

    *)
  5. name : SensitiveString.t option;
    (*

    The name of the toll.

    *)
  6. pass : RouteTollPass.t option;
    (*

    Details if the toll rate can be a pass that supports multiple trips.

    *)
  7. paymentMethods : RouteTollPaymentMethodList.t option;
    (*

    Accepted payment methods at the toll.

    *)
  8. transponders : RouteTransponderList.t option;
    (*

    Transponders for which this toll can be applied.

    *)
}
Sourceval make : ?applicableTimes:??? -> ?convertedPrice:??? -> ?id:??? -> ?localPrice:??? -> ?name:??? -> ?pass:??? -> ?paymentMethods:??? -> ?transponders:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Enum of string | `Structure of (string * [> `String of SensitiveString.t ]) list ] list | `String of SensitiveString.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 ]
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