| 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 Finder places — the expanded local-pack listing. Each place is billable; ads are free context. Phone, rating, and booking details are surfaced when present. |
|
from unifapi.models.local_finder_response import LocalFinderResponse
# TODO update the JSON string below
json = "{}"
# create an instance of LocalFinderResponse from a JSON string
local_finder_response_instance = LocalFinderResponse.from_json(json)
# print the JSON string representation of the object
print(LocalFinderResponse.to_json())
# convert the object into a dict
local_finder_response_dict = local_finder_response_instance.to_dict()
# create an instance of LocalFinderResponse from a dict
local_finder_response_from_dict = LocalFinderResponse.from_dict(local_finder_response_dict)
[Back to Model list] [Back to API list] [Back to README]