Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.42 KB

File metadata and controls

32 lines (23 loc) · 1.42 KB

SearchRequestFilters

Filters to apply to search results for more targeted queries. NOTE: Any parameter here that overlaps with lenses will take priority over the lens.

Properties

Name Type Description Notes
region str Filter results to a specific region using an ISO 3166-1 Alpha-2 country code. See https://help.kagi.com/api/regions for supported codes. [optional]
after date Filter for results published or updated after this date. [optional]
before date Filter for results published or updated before this date. [optional]

Example

from openapi_client.models.search_request_filters import SearchRequestFilters

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

# convert the object into a dict
search_request_filters_dict = search_request_filters_instance.to_dict()
# create an instance of SearchRequestFilters from a dict
search_request_filters_from_dict = SearchRequestFilters.from_dict(search_request_filters_dict)

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