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