Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.27 KB

File metadata and controls

32 lines (23 loc) · 1.27 KB

SeoBulkTrafficRequest

Properties

Name Type Description Notes
targets List[str] Domains to estimate traffic for (1-1000).
location SeoBulkTrafficLocation [optional]
language str Search language as an ISO code or full language name. Defaults to en. [optional]
view SeoDomainMetricsView [optional]

Example

from unifapi.models.seo_bulk_traffic_request import SeoBulkTrafficRequest

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

# convert the object into a dict
seo_bulk_traffic_request_dict = seo_bulk_traffic_request_instance.to_dict()
# create an instance of SeoBulkTrafficRequest from a dict
seo_bulk_traffic_request_from_dict = SeoBulkTrafficRequest.from_dict(seo_bulk_traffic_request_dict)

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