Module Values.WaypointOptimizationDestinationOptionsSource

Destination related options.

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 destination.

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

    GPS Heading at the position.

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

    The waypoint Id.

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

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

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

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

    *)
}
Sourceval make : ?accessHours:??? -> ?appointmentTime:??? -> ?heading:??? -> ?id:??? -> ?serviceDuration:??? -> ?sideOfStreet:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of Heading.t | `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