Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.31 KB

File metadata and controls

31 lines (22 loc) · 1.31 KB

SeoHistoricalBulkTrafficResponse

Properties

Name Type Description Notes
location str
language str
results List[SeoHistoricalBulkTrafficItem] Monthly estimated traffic time series per requested domain. Each domain is one billable record.

Example

from unifapi.models.seo_historical_bulk_traffic_response import SeoHistoricalBulkTrafficResponse

# TODO update the JSON string below
json = "{}"
# create an instance of SeoHistoricalBulkTrafficResponse from a JSON string
seo_historical_bulk_traffic_response_instance = SeoHistoricalBulkTrafficResponse.from_json(json)
# print the JSON string representation of the object
print(SeoHistoricalBulkTrafficResponse.to_json())

# convert the object into a dict
seo_historical_bulk_traffic_response_dict = seo_historical_bulk_traffic_response_instance.to_dict()
# create an instance of SeoHistoricalBulkTrafficResponse from a dict
seo_historical_bulk_traffic_response_from_dict = SeoHistoricalBulkTrafficResponse.from_dict(seo_historical_bulk_traffic_response_dict)

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