Search location as a country code/name, DataForSEO location code, or full location name. Defaults to us.
| Name | Type | Description | Notes |
|---|
from unifapi.models.seo_keywords_for_site_location import SeoKeywordsForSiteLocation
# TODO update the JSON string below
json = "{}"
# create an instance of SeoKeywordsForSiteLocation from a JSON string
seo_keywords_for_site_location_instance = SeoKeywordsForSiteLocation.from_json(json)
# print the JSON string representation of the object
print(SeoKeywordsForSiteLocation.to_json())
# convert the object into a dict
seo_keywords_for_site_location_dict = seo_keywords_for_site_location_instance.to_dict()
# create an instance of SeoKeywordsForSiteLocation from a dict
seo_keywords_for_site_location_from_dict = SeoKeywordsForSiteLocation.from_dict(seo_keywords_for_site_location_dict)