Module Values.ReverseGeocodingConfigSource

The input structure for Reverse Geocoding operation type.

Sourcetype nonrec t = {
  1. xAttributeName : String_.t;
    (*

    The field name for the data that describes x-axis coordinate, eg. longitude of a point.

    *)
  2. yAttributeName : String_.t;
    (*

    The field name for the data that describes y-axis coordinate, eg. latitude of a point.

    *)
}
Sourceval context_ : string
Sourceval make : xAttributeName:String_.t -> yAttributeName:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.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