Skip to content

Latest commit

 

History

History
34 lines (28 loc) · 1.23 KB

File metadata and controls

34 lines (28 loc) · 1.23 KB

Unifapi::MapsSearchRequest

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]
search_this_area Boolean When true, return results from the displayed map area rather than the broader location. [optional]
search_places Boolean When true, use search-places mode to return listings the way the mobile app surfaces them. [optional]

Example

require 'unifapi'

instance = Unifapi::MapsSearchRequest.new(
  query: null,
  location: null,
  language: null,
  limit: null,
  view: null,
  device: null,
  os: null,
  search_this_area: null,
  search_places: null
)