Module Values.RoutePedestrianPlaceSource

Place details corresponding to the arrival or departure.

Sourcetype nonrec t = {
  1. name : SensitiveString.t option;
    (*

    The name of the place.

    *)
  2. originalPosition : Position23.t option;
    (*

    Position provided in the request.

    *)
  3. position : Position23.t option;
    (*

    Position in World Geodetic System (WGS 84) format: [longitude, latitude].

    *)
  4. sideOfStreet : RouteSideOfStreet.t option;
    (*

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

    *)
  5. waypointIndex : RoutePedestrianPlaceWaypointIndexInteger.t option;
    (*

    Index of the waypoint in the request.

    *)
}
Sourceval make : ?name:??? -> ?originalPosition:??? -> ?position:??? -> ?sideOfStreet:??? -> ?waypointIndex:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of RoutePedestrianPlaceWaypointIndexInteger.t | `List of [> `Double of Double.t ] list | `String of SensitiveString.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