Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.7 KB

File metadata and controls

34 lines (25 loc) · 1.7 KB

SeoHistoricalRankOverviewRequest

Properties

Name Type Description Notes
target str Target domain, such as example.com or https://example.com. Specified without www.
location SeoHistoricalRankOverviewLocation [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]
view SeoDomainMetricsView [optional]

Example

from unifapi.models.seo_historical_rank_overview_request import SeoHistoricalRankOverviewRequest

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

# convert the object into a dict
seo_historical_rank_overview_request_dict = seo_historical_rank_overview_request_instance.to_dict()
# create an instance of SeoHistoricalRankOverviewRequest from a dict
seo_historical_rank_overview_request_from_dict = SeoHistoricalRankOverviewRequest.from_dict(seo_historical_rank_overview_request_dict)

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