| Name | Type | Description | Notes |
|---|---|---|---|
| target | str | Target domain echoed from the request. | |
| location | str | ||
| language | str | ||
| view | SeoDomainMetricsView | ||
| results | List[SeoHistoricalRankItem] | Monthly ranking distribution and traffic for the target over time. Each month is one billable record. |
from unifapi.models.seo_historical_rank_overview_response import SeoHistoricalRankOverviewResponse
# TODO update the JSON string below
json = "{}"
# create an instance of SeoHistoricalRankOverviewResponse from a JSON string
seo_historical_rank_overview_response_instance = SeoHistoricalRankOverviewResponse.from_json(json)
# print the JSON string representation of the object
print(SeoHistoricalRankOverviewResponse.to_json())
# convert the object into a dict
seo_historical_rank_overview_response_dict = seo_historical_rank_overview_response_instance.to_dict()
# create an instance of SeoHistoricalRankOverviewResponse from a dict
seo_historical_rank_overview_response_from_dict = SeoHistoricalRankOverviewResponse.from_dict(seo_historical_rank_overview_response_dict)