Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.21 KB

File metadata and controls

32 lines (23 loc) · 1.21 KB

SeoBulkTrafficResponse

Properties

Name Type Description Notes
location str
language str
view SeoDomainMetricsView
results List[SeoBulkTrafficItem] Estimated traffic per requested domain. Each domain is one billable record.

Example

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)

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