Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.59 KB

File metadata and controls

33 lines (24 loc) · 1.59 KB

SeoHistoricalBulkTrafficRequest

Properties

Name Type Description Notes
targets List[str] Domains to estimate historical traffic for (1-1000).
location SeoHistoricalBulkTrafficLocation [optional]
language str Search language as an ISO code or full language name. Defaults to en. [optional]
date_from str Start of the history window. Date in yyyy-mm-dd format. Minimum date: 2019-01-01. [optional]
date_to str End of the history window. Date in yyyy-mm-dd format. Minimum date: 2019-01-01. [optional]

Example

from unifapi.models.seo_historical_bulk_traffic_request import SeoHistoricalBulkTrafficRequest

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

# convert the object into a dict
seo_historical_bulk_traffic_request_dict = seo_historical_bulk_traffic_request_instance.to_dict()
# create an instance of SeoHistoricalBulkTrafficRequest from a dict
seo_historical_bulk_traffic_request_from_dict = SeoHistoricalBulkTrafficRequest.from_dict(seo_historical_bulk_traffic_request_dict)

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