Module Values.RouteTollPassSource

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

Sourcetype nonrec t = {
  1. includesReturnTrip : SensitiveBoolean.t option;
    (*

    If the pass includes the rate for the return leg of the trip.

    *)
  2. seniorPass : SensitiveBoolean.t option;
    (*

    If the pass is only valid for senior persons.

    *)
  3. transferCount : RouteTollPassTransferCountInteger.t option;
    (*

    If the toll pass can be transferred, and how many times.

    *)
  4. tripCount : RouteTollPassTripCountInteger.t option;
    (*

    Number of trips the pass is valid for.

    *)
  5. validityPeriod : RouteTollPassValidityPeriod.t option;
    (*

    Period for which the pass is valid.

    *)
}
Sourceval make : ?includesReturnTrip:??? -> ?seniorPass:??? -> ?transferCount:??? -> ?tripCount:??? -> ?validityPeriod:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of SensitiveBoolean.t | `Integer of RouteTollPassTransferCountInteger.t | `Structure of (string * [> `Enum of string | `Integer of RouteTollPassValidityPeriodPeriodCountInteger.t ]) 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