Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 992 Bytes

File metadata and controls

31 lines (22 loc) · 992 Bytes

GeoMentionMonthly

Properties

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

Example

from unifapi.models.geo_mention_monthly import GeoMentionMonthly

# TODO update the JSON string below
json = "{}"
# create an instance of GeoMentionMonthly from a JSON string
geo_mention_monthly_instance = GeoMentionMonthly.from_json(json)
# print the JSON string representation of the object
print(GeoMentionMonthly.to_json())

# convert the object into a dict
geo_mention_monthly_dict = geo_mention_monthly_instance.to_dict()
# create an instance of GeoMentionMonthly from a dict
geo_mention_monthly_from_dict = GeoMentionMonthly.from_dict(geo_mention_monthly_dict)

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