| Name |
Type |
Description |
Notes |
| year |
int |
|
|
| month |
int |
|
|
| ai_search_volume |
float |
|
[optional] |
from unifapi.models.geo_monthly_search import GeoMonthlySearch
# TODO update the JSON string below
json = "{}"
# create an instance of GeoMonthlySearch from a JSON string
geo_monthly_search_instance = GeoMonthlySearch.from_json(json)
# print the JSON string representation of the object
print(GeoMonthlySearch.to_json())
# convert the object into a dict
geo_monthly_search_dict = geo_monthly_search_instance.to_dict()
# create an instance of GeoMonthlySearch from a dict
geo_monthly_search_from_dict = GeoMonthlySearch.from_dict(geo_monthly_search_dict)
[Back to Model list] [Back to API list] [Back to README]