Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.27 KB

File metadata and controls

31 lines (22 loc) · 1.27 KB

SeoKeywordHistoryRequest

Properties

Name Type Description Notes
keywords List[str] Keywords to look up (1-700). Returns historical metrics since 2019 for each.
location SeoKeywordHistoryLocation [optional]
language str Search language as an ISO code or full language name. Defaults to en. [optional]

Example

from unifapi.models.seo_keyword_history_request import SeoKeywordHistoryRequest

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

# convert the object into a dict
seo_keyword_history_request_dict = seo_keyword_history_request_instance.to_dict()
# create an instance of SeoKeywordHistoryRequest from a dict
seo_keyword_history_request_from_dict = SeoKeywordHistoryRequest.from_dict(seo_keyword_history_request_dict)

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