Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.43 KB

File metadata and controls

35 lines (26 loc) · 1.43 KB

SeoKeywordAutocompleteResponse

Properties

Name Type Description Notes
keyword str
location str
language str
observed_at str [optional]
search_url str [optional]
result_count int Number of suggestions returned.
results List[SeoAutocompleteSuggestion] Autocomplete suggestions for SEO keyword discovery. Each suggestion is billable.

Example

from unifapi.models.seo_keyword_autocomplete_response import SeoKeywordAutocompleteResponse

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

# convert the object into a dict
seo_keyword_autocomplete_response_dict = seo_keyword_autocomplete_response_instance.to_dict()
# create an instance of SeoKeywordAutocompleteResponse from a dict
seo_keyword_autocomplete_response_from_dict = SeoKeywordAutocompleteResponse.from_dict(seo_keyword_autocomplete_response_dict)

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