Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 979 Bytes

File metadata and controls

31 lines (22 loc) · 979 Bytes

GeoMonthlySearch

Properties

Name Type Description Notes
year int
month int
ai_search_volume float [optional]

Example

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]