Module Values.RouteSpanSpeedLimitDetailsSource

Details about the speed limit corresponding to the span. Unit: kilometers per hour

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

    Maximum speed. Unit: kilometers per hour

    *)
  2. unlimited : SensitiveBoolean.t option;
    (*

    If the span doesn't have a speed limit like the Autobahn.

    *)
}
Sourceval make : ?maxSpeed:??? -> ?unlimited:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of SensitiveBoolean.t | `Double of SpeedKilometersPerHour.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