| Name | Type | Description | Notes |
|---|---|---|---|
| query | str | Search query to inspect. | |
| location | SerpListLocation | [optional] | |
| language | str | Search language as an ISO code or full language name. Defaults to en. | [optional] |
| limit | int | Number of results to return, matching the limit parameter used across other UnifAPI endpoints. Maps to result depth. | [optional] |
| view | SerpListView | [optional] | |
| device | SerpListDevice | [optional] | |
| os | SerpListOs | [optional] | |
| search_this_area | bool | When true, return results from the displayed map area rather than the broader location. | [optional] |
| search_places | bool | When true, use search-places mode to return listings the way the mobile app surfaces them. | [optional] |
from unifapi.models.maps_search_request import MapsSearchRequest
# TODO update the JSON string below
json = "{}"
# create an instance of MapsSearchRequest from a JSON string
maps_search_request_instance = MapsSearchRequest.from_json(json)
# print the JSON string representation of the object
print(MapsSearchRequest.to_json())
# convert the object into a dict
maps_search_request_dict = maps_search_request_instance.to_dict()
# create an instance of MapsSearchRequest from a dict
maps_search_request_from_dict = MapsSearchRequest.from_dict(maps_search_request_dict)