Module Values.SearchPlaceIndexForPositionSummarySource

A summary of the request sent by using SearchPlaceIndexForPosition.

Sourcetype nonrec t = {
  1. position : Position.t option;
    (*

    The position specified in the request.

    *)
  2. maxResults : PlaceIndexSearchResultLimit.t option;
    (*

    Contains the optional result count limit that is specified in the request. Default value: 50

    *)
  3. dataSource : String_.t option;
    (*

    The geospatial data provider attached to the place index resource specified in the request. Values can be one of the following: Esri Grab Here For more information about data providers, see Amazon Location Service data providers.

    *)
  4. language : LanguageTag.t option;
    (*

    The preferred language used to return results. Matches the language in the request. The value is a valid BCP 47 language tag, for example, en for English.

    *)
}
Sourceval make : ?position:??? -> ?maxResults:??? -> ?dataSource:??? -> ?language:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of PlaceIndexSearchResultLimit.t | `List of [> `Double of Double.t ] list | `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