You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
fromunifapi.models.seo_keyword_autocomplete_requestimportSeoKeywordAutocompleteRequest# TODO update the JSON string belowjson="{}"# create an instance of SeoKeywordAutocompleteRequest from a JSON stringseo_keyword_autocomplete_request_instance=SeoKeywordAutocompleteRequest.from_json(json)
# print the JSON string representation of the objectprint(SeoKeywordAutocompleteRequest.to_json())
# convert the object into a dictseo_keyword_autocomplete_request_dict=seo_keyword_autocomplete_request_instance.to_dict()
# create an instance of SeoKeywordAutocompleteRequest from a dictseo_keyword_autocomplete_request_from_dict=SeoKeywordAutocompleteRequest.from_dict(seo_keyword_autocomplete_request_dict)