| Name |
Type |
Description |
Notes |
| year |
int |
Calendar year of the data point. |
|
| month |
int |
Month number, 1-12. |
|
| search_volume |
int |
Average Google search volume for that month. |
[optional] |
from unifapi.models.seo_keyword_monthly_search import SeoKeywordMonthlySearch
# TODO update the JSON string below
json = "{}"
# create an instance of SeoKeywordMonthlySearch from a JSON string
seo_keyword_monthly_search_instance = SeoKeywordMonthlySearch.from_json(json)
# print the JSON string representation of the object
print(SeoKeywordMonthlySearch.to_json())
# convert the object into a dict
seo_keyword_monthly_search_dict = seo_keyword_monthly_search_instance.to_dict()
# create an instance of SeoKeywordMonthlySearch from a dict
seo_keyword_monthly_search_from_dict = SeoKeywordMonthlySearch.from_dict(seo_keyword_monthly_search_dict)
[Back to Model list] [Back to API list] [Back to README]