Search location as a country code/name, DataForSEO location code, full location name, or latitude,longitude,radius coordinate string. Defaults to us.
| Name | Type | Description | Notes |
|---|
from unifapi.models.geo_keyword_search_volume_request_location import GeoKeywordSearchVolumeRequestLocation
# TODO update the JSON string below
json = "{}"
# create an instance of GeoKeywordSearchVolumeRequestLocation from a JSON string
geo_keyword_search_volume_request_location_instance = GeoKeywordSearchVolumeRequestLocation.from_json(json)
# print the JSON string representation of the object
print(GeoKeywordSearchVolumeRequestLocation.to_json())
# convert the object into a dict
geo_keyword_search_volume_request_location_dict = geo_keyword_search_volume_request_location_instance.to_dict()
# create an instance of GeoKeywordSearchVolumeRequestLocation from a dict
geo_keyword_search_volume_request_location_from_dict = GeoKeywordSearchVolumeRequestLocation.from_dict(geo_keyword_search_volume_request_location_dict)