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