Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.45 KB

File metadata and controls

33 lines (24 loc) · 1.45 KB

SeoHistoricalRankOverviewResponse

Properties

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.

Example

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)

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