Module Values.RouteSpanDynamicSpeedDetailsSource

Details about the dynamic speed. Unit: kilometers per hour

Sourcetype nonrec t = {
  1. bestCaseSpeed : SpeedKilometersPerHour.t option;
    (*

    Estimated speed while traversing the span without traffic congestion. Unit: kilometers per hour

    *)
  2. turnDuration : DurationSeconds.t option;
    (*

    Estimated time to turn from this span into the next. Unit: seconds

    *)
  3. typicalSpeed : SpeedKilometersPerHour.t option;
    (*

    Estimated speed while traversing the span under typical traffic congestion. Unit: kilometers per hour

    *)
}
Sourceval make : ?bestCaseSpeed:??? -> ?turnDuration:??? -> ?typicalSpeed:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of SpeedKilometersPerHour.t | `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