| 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] |
Individual events results flattened from the events block. Each event is one billable record; date, venue, and ticket details are carried in extras. |
|
from unifapi.models.events_search_response import EventsSearchResponse
# TODO update the JSON string below
json = "{}"
# create an instance of EventsSearchResponse from a JSON string
events_search_response_instance = EventsSearchResponse.from_json(json)
# print the JSON string representation of the object
print(EventsSearchResponse.to_json())
# convert the object into a dict
events_search_response_dict = events_search_response_instance.to_dict()
# create an instance of EventsSearchResponse from a dict
events_search_response_from_dict = EventsSearchResponse.from_dict(events_search_response_dict)
[Back to Model list] [Back to API list] [Back to README]