| Name | Type | Description | Notes |
|---|---|---|---|
| keyword | str | Keyword phrase. | |
| history | List[SeoKeywordHistoryPoint] | Historical search-volume and Google Ads metrics, newest first. |
from unifapi.models.seo_keyword_history_item import SeoKeywordHistoryItem
# TODO update the JSON string below
json = "{}"
# create an instance of SeoKeywordHistoryItem from a JSON string
seo_keyword_history_item_instance = SeoKeywordHistoryItem.from_json(json)
# print the JSON string representation of the object
print(SeoKeywordHistoryItem.to_json())
# convert the object into a dict
seo_keyword_history_item_dict = seo_keyword_history_item_instance.to_dict()
# create an instance of SeoKeywordHistoryItem from a dict
seo_keyword_history_item_from_dict = SeoKeywordHistoryItem.from_dict(seo_keyword_history_item_dict)