Module Values.RouteTollPriceSummarySource

Summary of the route and toll price.

Sourcetype nonrec t = {
  1. currency : CurrencyCode.t option;
    (*

    Currency code corresponding to the price. This is the same as Currency specified in the request.

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

    If the price is an estimate or an exact value.

    *)
  3. range : SensitiveBoolean.t option;
    (*

    If the price is a range or an exact value. If any of the toll fares making up the route is a range, the overall price is also a range.

    *)
  4. rangeValue : RouteTollPriceValueRange.t option;
    (*

    Price range with a minimum and maximum value, if a range.

    *)
  5. value : RouteTollPriceSummaryValueDouble.t option;
    (*

    Exact price, if not a range.

    *)
}
Sourceval make : ?currency:??? -> ?estimate:??? -> ?range:??? -> ?rangeValue:??? -> ?value:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of SensitiveBoolean.t | `Double of RouteTollPriceSummaryValueDouble.t | `String of CurrencyCode.t | `Structure of (string * [> `Double of RouteTollPriceValueRangeMinDouble.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