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