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_related_keywords_location import SeoRelatedKeywordsLocation
# TODO update the JSON string below
json = "{}"
# create an instance of SeoRelatedKeywordsLocation from a JSON string
seo_related_keywords_location_instance = SeoRelatedKeywordsLocation.from_json(json)
# print the JSON string representation of the object
print(SeoRelatedKeywordsLocation.to_json())
# convert the object into a dict
seo_related_keywords_location_dict = seo_related_keywords_location_instance.to_dict()
# create an instance of SeoRelatedKeywordsLocation from a dict
seo_related_keywords_location_from_dict = SeoRelatedKeywordsLocation.from_dict(seo_related_keywords_location_dict)