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