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
Category Google assigns to the suggestion, such as Search or Navigation.
[optional]
search_query_url
str
Google search URL the suggestion resolves to.
[optional]
thumbnail_url
str
Thumbnail image URL when Google attaches one to the suggestion.
[optional]
highlighted
List[str]
Substrings highlighted by Google within the suggestion.
[optional]
is_billable
bool
Each suggestion is one billable record.
Example
fromunifapi.models.seo_autocomplete_suggestionimportSeoAutocompleteSuggestion# TODO update the JSON string belowjson="{}"# create an instance of SeoAutocompleteSuggestion from a JSON stringseo_autocomplete_suggestion_instance=SeoAutocompleteSuggestion.from_json(json)
# print the JSON string representation of the objectprint(SeoAutocompleteSuggestion.to_json())
# convert the object into a dictseo_autocomplete_suggestion_dict=seo_autocomplete_suggestion_instance.to_dict()
# create an instance of SeoAutocompleteSuggestion from a dictseo_autocomplete_suggestion_from_dict=SeoAutocompleteSuggestion.from_dict(seo_autocomplete_suggestion_dict)