Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.33 KB

File metadata and controls

32 lines (23 loc) · 1.33 KB

SeoKeywordSearchVolumeTrend

Search-volume change percentages over recent periods (full view only).

Properties

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]

Example

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)

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