Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.26 KB

File metadata and controls

32 lines (23 loc) · 1.26 KB

SeoHistoricalMetricPeriod

Properties

Name Type Description Notes
year int Year of the metrics snapshot.
month int Month of the metrics snapshot (1-12). [optional]
etv float Estimated organic traffic (clicks) in this period. [optional]
count int Number of ranking keywords in this period. [optional]

Example

from unifapi.models.seo_historical_metric_period import SeoHistoricalMetricPeriod

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

# convert the object into a dict
seo_historical_metric_period_dict = seo_historical_metric_period_instance.to_dict()
# create an instance of SeoHistoricalMetricPeriod from a dict
seo_historical_metric_period_from_dict = SeoHistoricalMetricPeriod.from_dict(seo_historical_metric_period_dict)

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