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