Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.49 KB

File metadata and controls

33 lines (24 loc) · 1.49 KB

SeoHistoricalSerpsRequest

Properties

Name Type Description Notes
keyword str Keyword to retrieve historical SERP snapshots for.
location SeoHistoricalSerpsLocation [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_serps_request import SeoHistoricalSerpsRequest

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

# convert the object into a dict
seo_historical_serps_request_dict = seo_historical_serps_request_instance.to_dict()
# create an instance of SeoHistoricalSerpsRequest from a dict
seo_historical_serps_request_from_dict = SeoHistoricalSerpsRequest.from_dict(seo_historical_serps_request_dict)

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