Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.67 KB

File metadata and controls

37 lines (28 loc) · 1.67 KB

LocalFinderRequest

Properties

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]
device SerpListDevice [optional]
os SerpListOs [optional]
min_rating float Filter results to places with at least this average rating. [optional]
time_filter str Filter results by open hours. open_now keeps only places open at request time. [optional]

Example

from unifapi.models.local_finder_request import LocalFinderRequest

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

# convert the object into a dict
local_finder_request_dict = local_finder_request_instance.to_dict()
# create an instance of LocalFinderRequest from a dict
local_finder_request_from_dict = LocalFinderRequest.from_dict(local_finder_request_dict)

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