Skip to content

Latest commit

 

History

History
34 lines (28 loc) · 1.18 KB

File metadata and controls

34 lines (28 loc) · 1.18 KB

Unifapi::LocalFinderRequest

Properties

Name Type Description Notes
query String Search query to inspect.
location SerpListLocation [optional]
language String Search language as an ISO code or full language name. Defaults to en. [optional]
limit Integer 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 String Filter results by open hours. open_now keeps only places open at request time. [optional]

Example

require 'unifapi'

instance = Unifapi::LocalFinderRequest.new(
  query: null,
  location: null,
  language: null,
  limit: null,
  view: null,
  device: null,
  os: null,
  min_rating: null,
  time_filter: null
)