Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.05 KB

File metadata and controls

29 lines (20 loc) · 1.05 KB

SeoKeywordIdeasLocation

Search location as a country code/name, DataForSEO location code, or full location name. Defaults to us.

Properties

Name Type Description Notes

Example

from unifapi.models.seo_keyword_ideas_location import SeoKeywordIdeasLocation

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

# convert the object into a dict
seo_keyword_ideas_location_dict = seo_keyword_ideas_location_instance.to_dict()
# create an instance of SeoKeywordIdeasLocation from a dict
seo_keyword_ideas_location_from_dict = SeoKeywordIdeasLocation.from_dict(seo_keyword_ideas_location_dict)

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