Module Values.WaypointOptimizationOptimizedWaypointSource

The optimized waypoint.

Sourcetype nonrec t = {
  1. arrivalTime : TimestampWithTimezoneOffset.t option;
    (*

    Estimated time of arrival at the destination. Time format:YYYY-MM-DDThh:mm:ss.sssZ | YYYY-MM-DDThh:mm:ss.sss+hh:mm Examples: 2020-04-22T17:57:24Z 2020-04-22T17:57:24+02:00

    *)
  2. clusterIndex : ClusterIndex.t option;
    (*

    Index of the cluster the waypoint is associated with. The index is included in the response only if clustering was performed while processing the request.

    *)
  3. departureTime : TimestampWithTimezoneOffset.t option;
    (*

    Estimated time of departure from the origin. Time format:YYYY-MM-DDThh:mm:ss.sssZ | YYYY-MM-DDThh:mm:ss.sss+hh:mm Examples: 2020-04-22T17:57:24Z 2020-04-22T17:57:24+02:00

    *)
  4. id : WaypointId.t option;
    (*

    The waypoint Id.

    *)
  5. position : Position.t option;
    (*

    Position in World Geodetic System (WGS 84) format: [longitude, latitude].

    *)
}
Sourceval make : ?arrivalTime:??? -> ?clusterIndex:??? -> ?departureTime:??? -> ?id:??? -> ?position:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of ClusterIndex.t | `List of [> `Double of Double.t ] list | `String of TimestampWithTimezoneOffset.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