| Name | Type | Description | Notes |
|---|---|---|---|
| location | str | ||
| language | str | ||
| view | SeoDomainMetricsView | ||
| results | List[SeoBulkTrafficItem] | Estimated traffic per requested domain. Each domain is one billable record. |
from unifapi.models.seo_bulk_traffic_response import SeoBulkTrafficResponse
# TODO update the JSON string below
json = "{}"
# create an instance of SeoBulkTrafficResponse from a JSON string
seo_bulk_traffic_response_instance = SeoBulkTrafficResponse.from_json(json)
# print the JSON string representation of the object
print(SeoBulkTrafficResponse.to_json())
# convert the object into a dict
seo_bulk_traffic_response_dict = seo_bulk_traffic_response_instance.to_dict()
# create an instance of SeoBulkTrafficResponse from a dict
seo_bulk_traffic_response_from_dict = SeoBulkTrafficResponse.from_dict(seo_bulk_traffic_response_dict)