Module Values.RouteRoadSource

The road on the route.

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

    Name of the road (localized).

    *)
  2. routeNumber : RouteNumberList.t option;
    (*

    Route number of the road.

    *)
  3. towards : LocalizedStringList.t option;
    (*

    Names of destinations that can be reached when traveling on the road.

    *)
  4. type_ : RouteRoadType.t option;
    (*

    The type of road.

    *)
}
Sourceval make : ?roadName:??? -> ?routeNumber:??? -> ?towards:??? -> ?type_:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Enum 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