Search-volume change percentages over recent periods (full view only).
| Name | Type | Description | Notes |
|---|---|---|---|
| monthly | float | Percentage change versus the previous month. | [optional] |
| quarterly | float | Percentage change versus the previous quarter. | [optional] |
| yearly | float | Percentage change versus the previous year. | [optional] |
from unifapi.models.seo_keyword_search_volume_trend import SeoKeywordSearchVolumeTrend
# TODO update the JSON string below
json = "{}"
# create an instance of SeoKeywordSearchVolumeTrend from a JSON string
seo_keyword_search_volume_trend_instance = SeoKeywordSearchVolumeTrend.from_json(json)
# print the JSON string representation of the object
print(SeoKeywordSearchVolumeTrend.to_json())
# convert the object into a dict
seo_keyword_search_volume_trend_dict = seo_keyword_search_volume_trend_instance.to_dict()
# create an instance of SeoKeywordSearchVolumeTrend from a dict
seo_keyword_search_volume_trend_from_dict = SeoKeywordSearchVolumeTrend.from_dict(seo_keyword_search_volume_trend_dict)