Module Values_0.GeocoderHierarchySource

The preference hierarchy for the geocode preference.

Sourcetype nonrec t = {
  1. country : GeocoderHierarchyCountryString.t option;
    (*

    The country value for the preference hierarchy.

    *)
  2. state : GeocoderHierarchyStateString.t option;
    (*

    The state/region value for the preference hierarchy.

    *)
  3. county : GeocoderHierarchyCountyString.t option;
    (*

    The county/district value for the preference hierarchy.

    *)
  4. city : GeocoderHierarchyCityString.t option;
    (*

    The city value for the preference hierarchy.

    *)
  5. postCode : GeocoderHierarchyPostCodeString.t option;
    (*

    The postcode value for the preference hierarchy.

    *)
}
Sourceval make : ?country:??? -> ?state:??? -> ?county:??? -> ?city:??? -> ?postCode:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of GeocoderHierarchyCountryString.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