Module Values.RouteAllowOptionsSource

Features that are allowed while calculating a route.

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

    Allow Hot (High Occupancy Toll) lanes while calculating the route. Default value: false

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

    Allow Hov (High Occupancy vehicle) lanes while calculating the route. Default value: false

    *)
}
Sourceval make : ?hot:??? -> ?hov:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of SensitiveBoolean.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