| 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] |
| os |
SerpListOs |
|
[optional] |
| date_range |
str |
Restrict events to a relative date range. Defaults to all upcoming events. |
[optional] |
from unifapi.models.events_search_request import EventsSearchRequest
# TODO update the JSON string below
json = "{}"
# create an instance of EventsSearchRequest from a JSON string
events_search_request_instance = EventsSearchRequest.from_json(json)
# print the JSON string representation of the object
print(EventsSearchRequest.to_json())
# convert the object into a dict
events_search_request_dict = events_search_request_instance.to_dict()
# create an instance of EventsSearchRequest from a dict
events_search_request_from_dict = EventsSearchRequest.from_dict(events_search_request_dict)
[Back to Model list] [Back to API list] [Back to README]