| Name | Type | Description | Notes |
|---|---|---|---|
| location | str | ||
| language | str | ||
| results | List[SeoHistoricalBulkTrafficItem] | Monthly estimated traffic time series per requested domain. Each domain is one billable record. |
from unifapi.models.seo_historical_bulk_traffic_response import SeoHistoricalBulkTrafficResponse
# TODO update the JSON string below
json = "{}"
# create an instance of SeoHistoricalBulkTrafficResponse from a JSON string
seo_historical_bulk_traffic_response_instance = SeoHistoricalBulkTrafficResponse.from_json(json)
# print the JSON string representation of the object
print(SeoHistoricalBulkTrafficResponse.to_json())
# convert the object into a dict
seo_historical_bulk_traffic_response_dict = seo_historical_bulk_traffic_response_instance.to_dict()
# create an instance of SeoHistoricalBulkTrafficResponse from a dict
seo_historical_bulk_traffic_response_from_dict = SeoHistoricalBulkTrafficResponse.from_dict(seo_historical_bulk_traffic_response_dict)