Module Values.RouteScooterOptionsSource

Travel mode options when the provided travel mode is Scooter. For GrabMaps customers, ap-southeast-1 and ap-southeast-5 regions support only LicensePlate options.

Sourcetype nonrec t = {
  1. engineType : RouteEngineType.t option;
    (*

    Engine type of the vehicle. Not supported in ap-southeast-1 and ap-southeast-5 regions for GrabMaps customers.

    *)
  2. licensePlate : RouteVehicleLicensePlate.t option;
    (*

    The vehicle License Plate.

    *)
  3. maxSpeed : RouteScooterOptionsMaxSpeedDouble.t option;
    (*

    Maximum speed Not supported in ap-southeast-1 and ap-southeast-5 regions for GrabMaps customers. Unit: kilometers per hour

    *)
  4. occupancy : RouteScooterOptionsOccupancyInteger.t option;
    (*

    The number of occupants in the vehicle. Not supported in ap-southeast-1 and ap-southeast-5 regions for GrabMaps customers. Default value: 1

    *)
}
Sourceval make : ?engineType:??? -> ?licensePlate:??? -> ?maxSpeed:??? -> ?occupancy:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of RouteScooterOptionsMaxSpeedDouble.t | `Enum of string | `Integer of RouteScooterOptionsOccupancyInteger.t | `Structure of (string * [> `String of RouteVehicleLicensePlateLastCharacterString.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