Module Values.RouteKeepStepDetailsSource

Details that are specific to a Keep step.

Sourcetype nonrec t = {
  1. intersection : LocalizedStringList.t option;
    (*

    Name of the intersection, if applicable to the step.

    *)
  2. steeringDirection : RouteSteeringDirection.t option;
    (*

    Steering direction for the step.

    *)
  3. turnAngle : TurnAngle.t option;
    (*

    Angle of the turn.

    *)
  4. turnIntensity : RouteTurnIntensity.t option;
    (*

    Intensity of the turn.

    *)
}
Sourceval make : ?intersection:??? -> ?steeringDirection:??? -> ?turnAngle:??? -> ?turnIntensity:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of TurnAngle.t | `Enum of string | `List of [> `Structure of (string * [> `String of LanguageTag.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