Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.02 KB

File metadata and controls

30 lines (21 loc) · 1.02 KB

SeoBulkTrafficItem

Properties

Name Type Description Notes
target str Domain echoed from the request.
metrics SeoDomainMetrics [optional]

Example

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)

[Back to Model list] [Back to API list] [Back to README]