Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.65 KB

File metadata and controls

33 lines (24 loc) · 1.65 KB

SeoKeywordAutocompleteRequest

Properties

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

Example

from unifapi.models.seo_keyword_autocomplete_request import SeoKeywordAutocompleteRequest

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

# convert the object into a dict
seo_keyword_autocomplete_request_dict = seo_keyword_autocomplete_request_instance.to_dict()
# create an instance of SeoKeywordAutocompleteRequest from a dict
seo_keyword_autocomplete_request_from_dict = SeoKeywordAutocompleteRequest.from_dict(seo_keyword_autocomplete_request_dict)

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