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
Keywords the domain is relevant for, with search volume, competition, difficulty, and intent. Each keyword is one billable record.
Example
fromunifapi.models.seo_keywords_for_site_responseimportSeoKeywordsForSiteResponse# TODO update the JSON string belowjson="{}"# create an instance of SeoKeywordsForSiteResponse from a JSON stringseo_keywords_for_site_response_instance=SeoKeywordsForSiteResponse.from_json(json)
# print the JSON string representation of the objectprint(SeoKeywordsForSiteResponse.to_json())
# convert the object into a dictseo_keywords_for_site_response_dict=seo_keywords_for_site_response_instance.to_dict()
# create an instance of SeoKeywordsForSiteResponse from a dictseo_keywords_for_site_response_from_dict=SeoKeywordsForSiteResponse.from_dict(seo_keywords_for_site_response_dict)