Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.38 KB

File metadata and controls

34 lines (25 loc) · 1.38 KB

SeoKeywordHistoryPoint

Properties

Name Type Description Notes
year int Year of the data point.
month int Month of the data point (1-12). [optional]
search_volume int Average monthly search volume. [optional]
cpc float Average cost-per-click in USD. [optional]
competition float Google Ads competition index between 0 and 1. [optional]
competition_level str Google Ads competition level: LOW, MEDIUM, or HIGH. [optional]

Example

from unifapi.models.seo_keyword_history_point import SeoKeywordHistoryPoint

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

# convert the object into a dict
seo_keyword_history_point_dict = seo_keyword_history_point_instance.to_dict()
# create an instance of SeoKeywordHistoryPoint from a dict
seo_keyword_history_point_from_dict = SeoKeywordHistoryPoint.from_dict(seo_keyword_history_point_dict)

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