Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.69 KB

File metadata and controls

36 lines (27 loc) · 1.69 KB

SeoAutocompleteSuggestion

Properties

Name Type Description Notes
rank int Absolute rank of the suggestion in the list. [optional]
suggestion str Google autocomplete keyword suggestion.
relevance int Relevance score Google assigns to the suggestion. [optional]
suggestion_type str 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

from unifapi.models.seo_autocomplete_suggestion import SeoAutocompleteSuggestion

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

# convert the object into a dict
seo_autocomplete_suggestion_dict = seo_autocomplete_suggestion_instance.to_dict()
# create an instance of SeoAutocompleteSuggestion from a dict
seo_autocomplete_suggestion_from_dict = SeoAutocompleteSuggestion.from_dict(seo_autocomplete_suggestion_dict)

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