Module Values.RouteMatrixCarOptionsSource

Travel mode options when the provided travel mode is Car.

Sourcetype nonrec t = {
  1. licensePlate : RouteMatrixVehicleLicensePlate.t option;
    (*

    The vehicle License Plate.

    *)
  2. maxSpeed : RouteMatrixCarOptionsMaxSpeedDouble.t option;
    (*

    Maximum speed Unit: kilometers per hour

    *)
  3. occupancy : RouteMatrixCarOptionsOccupancyInteger.t option;
    (*

    The number of occupants in the vehicle. Default value: 1

    *)
}
Sourceval make : ?licensePlate:??? -> ?maxSpeed:??? -> ?occupancy:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of RouteMatrixCarOptionsMaxSpeedDouble.t | `Integer of RouteMatrixCarOptionsOccupancyInteger.t | `Structure of (string * [> `String of RouteMatrixVehicleLicensePlateLastCharacterString.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