| Name | Type | Description | Notes |
|---|---|---|---|
| keywords | List[str] | Keywords to look up AI search volume for. Up to 1000 keywords, 250 chars each. | |
| location | GeoKeywordSearchVolumeRequestLocation | [optional] | |
| language | str | Search language as an ISO code or full language name. Defaults to en. | [optional] |
from unifapi.models.geo_keyword_search_volume_request import GeoKeywordSearchVolumeRequest
# TODO update the JSON string below
json = "{}"
# create an instance of GeoKeywordSearchVolumeRequest from a JSON string
geo_keyword_search_volume_request_instance = GeoKeywordSearchVolumeRequest.from_json(json)
# print the JSON string representation of the object
print(GeoKeywordSearchVolumeRequest.to_json())
# convert the object into a dict
geo_keyword_search_volume_request_dict = geo_keyword_search_volume_request_instance.to_dict()
# create an instance of GeoKeywordSearchVolumeRequest from a dict
geo_keyword_search_volume_request_from_dict = GeoKeywordSearchVolumeRequest.from_dict(geo_keyword_search_volume_request_dict)