Skip to content

Latest commit

 

History

History
36 lines (30 loc) · 1.51 KB

File metadata and controls

36 lines (30 loc) · 1.51 KB

Unifapi::GeoMentionsSearchRequest

Properties

Name Type Description Notes
target Array<GeoMentionsTarget> Up to 10 target entities, each a domain or a keyword.
engine GeoEngine [optional]
location GeoKeywordSearchVolumeRequestLocation [optional]
language String Search language as an ISO code or full language name. Defaults to en. [optional]
filters GeoMentionsSearchRequestFilters [optional]
order_by Array<DataForSeoOrderByRule> Sort the matched mentions. Each rule is {&quot;field&quot;,&quot;dir&quot;} with dir asc or desc; up to 3 rules, applied in order. Sortable fields: ai_search_volume, platform, model. [optional]
limit Integer Max mentions to return. Default 100. [optional]
offset Integer Mentions to skip. Use cursor beyond 9000. [optional]
cursor String search_after_token from a previous response, for deep pagination. [optional]
view GeoView [optional]

Example

require 'unifapi'

instance = Unifapi::GeoMentionsSearchRequest.new(
  target: null,
  engine: null,
  location: null,
  language: null,
  filters: null,
  order_by: null,
  limit: null,
  offset: null,
  cursor: null,
  view: null
)