Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.51 KB

File metadata and controls

38 lines (29 loc) · 1.51 KB

MapsSearchResponse

Properties

Name Type Description Notes
query str
location str
language str
view SerpListView
observed_at str [optional]
search_url str [optional]
item_types List[str] SERP element types present in the result, in source order.
total_results int [optional]
result_count int Number of result elements returned.
results List[SerpListElement] Local business listings. Each place is billable; ads are free context. Address, rating, coordinates, and category fields are surfaced when present.

Example

from unifapi.models.maps_search_response import MapsSearchResponse

# TODO update the JSON string below
json = "{}"
# create an instance of MapsSearchResponse from a JSON string
maps_search_response_instance = MapsSearchResponse.from_json(json)
# print the JSON string representation of the object
print(MapsSearchResponse.to_json())

# convert the object into a dict
maps_search_response_dict = maps_search_response_instance.to_dict()
# create an instance of MapsSearchResponse from a dict
maps_search_response_from_dict = MapsSearchResponse.from_dict(maps_search_response_dict)

[Back to Model list] [Back to API list] [Back to README]