Module Values.CalculateRouteCarModeOptionsSource

Contains details about additional route preferences for requests that specify TravelMode as Car.

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

    Avoids ferries when calculating routes. Default Value: false Valid Values: false | true

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

    Avoids tolls when calculating routes. Default Value: false Valid Values: false | true

    *)
}
Sourceval make : ?avoidFerries:??? -> ?avoidTolls:??? -> 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