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