| 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] |
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)