| Name | Type | Description | Notes |
|---|---|---|---|
| target | str | Domain echoed from the request. | |
| metrics | SeoDomainMetrics | [optional] |
from unifapi.models.seo_bulk_traffic_item import SeoBulkTrafficItem
# TODO update the JSON string below
json = "{}"
# create an instance of SeoBulkTrafficItem from a JSON string
seo_bulk_traffic_item_instance = SeoBulkTrafficItem.from_json(json)
# print the JSON string representation of the object
print(SeoBulkTrafficItem.to_json())
# convert the object into a dict
seo_bulk_traffic_item_dict = seo_bulk_traffic_item_instance.to_dict()
# create an instance of SeoBulkTrafficItem from a dict
seo_bulk_traffic_item_from_dict = SeoBulkTrafficItem.from_dict(seo_bulk_traffic_item_dict)