Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.19 KB

File metadata and controls

31 lines (22 loc) · 1.19 KB

GeoKeywordSearchVolumeRecord

Properties

Name Type Description Notes
keyword str
ai_search_volume float [optional]
monthly_searches List[GeoMonthlySearch] [optional]

Example

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)

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