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
Keyword suggestions with search volume, competition, difficulty, and intent. Each keyword is one billable record.
Example
fromunifapi.models.seo_keyword_suggestions_responseimportSeoKeywordSuggestionsResponse# TODO update the JSON string belowjson="{}"# create an instance of SeoKeywordSuggestionsResponse from a JSON stringseo_keyword_suggestions_response_instance=SeoKeywordSuggestionsResponse.from_json(json)
# print the JSON string representation of the objectprint(SeoKeywordSuggestionsResponse.to_json())
# convert the object into a dictseo_keyword_suggestions_response_dict=seo_keyword_suggestions_response_instance.to_dict()
# create an instance of SeoKeywordSuggestionsResponse from a dictseo_keyword_suggestions_response_from_dict=SeoKeywordSuggestionsResponse.from_dict(seo_keyword_suggestions_response_dict)