Module Values.RouteVehicleOverviewSummarySource

Summarized details of the leg.

Sourcetype nonrec t = {
  1. bestCaseDuration : DurationSeconds.t option;
    (*

    Total duration in free flowing traffic, which is the best case or shortest duration possible to cover the leg. Unit: seconds

    *)
  2. distance : DistanceMeters.t option;
    (*

    Distance of the step.

    *)
  3. duration : DurationSeconds.t option;
    (*

    Duration of the step. Unit: seconds

    *)
  4. typicalDuration : DurationSeconds.t option;
    (*

    Duration of the computed span under typical traffic congestion. Unit: seconds

    *)
}
Sourceval make : ?bestCaseDuration:??? -> ?distance:??? -> ?duration:??? -> ?typicalDuration:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of DurationSeconds.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