Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.21 KB

File metadata and controls

32 lines (23 loc) · 1.21 KB

SeoHistoricalRankItem

Properties

Name Type Description Notes
year int Year of the metrics snapshot.
month int Month of the metrics snapshot (1-12). [optional]
organic SeoDomainMetricGroup [optional]
paid SeoDomainMetricsPaid [optional]

Example

from unifapi.models.seo_historical_rank_item import SeoHistoricalRankItem

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

# convert the object into a dict
seo_historical_rank_item_dict = seo_historical_rank_item_instance.to_dict()
# create an instance of SeoHistoricalRankItem from a dict
seo_historical_rank_item_from_dict = SeoHistoricalRankItem.from_dict(seo_historical_rank_item_dict)

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