Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 993 Bytes

File metadata and controls

26 lines (20 loc) · 993 Bytes

Unifapi::SeoKeywordAutocompleteRequest

Properties

Name Type Description Notes
keyword String Seed query typed into Google search. Returns the autocomplete suggestions Google offers.
location SeoAutocompleteLocation [optional]
language String Search language as an ISO code or full language name. Defaults to en. [optional]
cursor_pointer Integer Cursor position within the keyword. Defaults to the end of the keyword, matching how Google expands suggestions as you type. [optional]
client String Autocomplete client to emulate, such as chrome or gws-wiz. Different clients can return different suggestion sets. [optional]

Example

require 'unifapi'

instance = Unifapi::SeoKeywordAutocompleteRequest.new(
  keyword: null,
  location: null,
  language: null,
  cursor_pointer: null,
  client: null
)