| Name | Type | Description | Notes |
|---|---|---|---|
| keyword | str | ||
| ai_search_volume | float | [optional] | |
| monthly_searches | List[GeoMonthlySearch] | [optional] |
from unifapi.models.geo_keyword_search_volume_record import GeoKeywordSearchVolumeRecord
# TODO update the JSON string below
json = "{}"
# create an instance of GeoKeywordSearchVolumeRecord from a JSON string
geo_keyword_search_volume_record_instance = GeoKeywordSearchVolumeRecord.from_json(json)
# print the JSON string representation of the object
print(GeoKeywordSearchVolumeRecord.to_json())
# convert the object into a dict
geo_keyword_search_volume_record_dict = geo_keyword_search_volume_record_instance.to_dict()
# create an instance of GeoKeywordSearchVolumeRecord from a dict
geo_keyword_search_volume_record_from_dict = GeoKeywordSearchVolumeRecord.from_dict(geo_keyword_search_volume_record_dict)