Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.37 KB

File metadata and controls

31 lines (22 loc) · 1.37 KB

GeoKeywordSearchVolumeRequest

Properties

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]

Example

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)

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