Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.25 KB

File metadata and controls

32 lines (23 loc) · 1.25 KB

SeoKeywordHistoryResponse

Properties

Name Type Description Notes
keywords List[str] Keywords echoed from the request.
location str
language str
results List[SeoKeywordHistoryItem] Historical metrics per keyword. Each keyword is one billable record.

Example

from unifapi.models.seo_keyword_history_response import SeoKeywordHistoryResponse

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

# convert the object into a dict
seo_keyword_history_response_dict = seo_keyword_history_response_instance.to_dict()
# create an instance of SeoKeywordHistoryResponse from a dict
seo_keyword_history_response_from_dict = SeoKeywordHistoryResponse.from_dict(seo_keyword_history_response_dict)

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