Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.11 KB

File metadata and controls

30 lines (21 loc) · 1.11 KB

SeoKeywordHistoryItem

Properties

Name Type Description Notes
keyword str Keyword phrase.
history List[SeoKeywordHistoryPoint] Historical search-volume and Google Ads metrics, newest first.

Example

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)

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