Module Values.WaypointOptimizationWaypointSource

Waypoint between the Origin and Destination.

Sourcetype nonrec t = {
  1. accessHours : WaypointOptimizationAccessHours.t option;
    (*

    Access hours corresponding to when a waypoint can be visited.

    *)
  2. appointmentTime : TimestampWithTimezoneOffset.t option;
    (*

    Appointment time at the waypoint.

    *)
  3. before : BeforeWaypointsList.t option;
    (*

    Constraint defining what waypoints are to be visited after this waypoint.

    *)
  4. heading : Heading.t option;
    (*

    GPS Heading at the position.

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

    The waypoint Id.

    *)
  6. position : Position.t;
    (*

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

    *)
  7. serviceDuration : DurationSeconds.t option;
    (*

    Service time spent at the waypoint. At an appointment, the service time should be the appointment duration. Unit: seconds

    *)
  8. sideOfStreet : WaypointOptimizationSideOfStreetOptions.t option;
    (*

    Options to configure matching the provided position to a side of the street.

    *)
}
Sourceval context_ : string
Sourceval make : ?accessHours:??? -> ?appointmentTime:??? -> ?before:??? -> ?heading:??? -> ?id:??? -> ?serviceDuration:??? -> ?sideOfStreet:??? -> position:Position.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of Heading.t | `List of [> `Double of Double.t | `Integer of WaypointIndex.t ] list | `Long of DurationSeconds.t | `String of TimestampWithTimezoneOffset.t | `Structure of (string * [> `Enum of string | `List of [> `Double of Double.t ] list | `Structure of (string * [> `Enum of string | `String of TimeOfDay.t ]) list ]) 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