| Name | Type | Description | Notes |
|---|---|---|---|
| targets | List[str] | Domains to estimate traffic for (1-1000). | |
| location | SeoBulkTrafficLocation | [optional] | |
| language | str | Search language as an ISO code or full language name. Defaults to en. | [optional] |
| view | SeoDomainMetricsView | [optional] |
from unifapi.models.seo_bulk_traffic_request import SeoBulkTrafficRequest
# TODO update the JSON string below
json = "{}"
# create an instance of SeoBulkTrafficRequest from a JSON string
seo_bulk_traffic_request_instance = SeoBulkTrafficRequest.from_json(json)
# print the JSON string representation of the object
print(SeoBulkTrafficRequest.to_json())
# convert the object into a dict
seo_bulk_traffic_request_dict = seo_bulk_traffic_request_instance.to_dict()
# create an instance of SeoBulkTrafficRequest from a dict
seo_bulk_traffic_request_from_dict = SeoBulkTrafficRequest.from_dict(seo_bulk_traffic_request_dict)