Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.12 KB

File metadata and controls

30 lines (21 loc) · 1.12 KB

SeoKeywordDifficultyItem

Properties

Name Type Description Notes
keyword str Keyword phrase.
keyword_difficulty int Difficulty of ranking in the top-10 organic results, on a 0-100 scale. [optional]

Example

from unifapi.models.seo_keyword_difficulty_item import SeoKeywordDifficultyItem

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

# convert the object into a dict
seo_keyword_difficulty_item_dict = seo_keyword_difficulty_item_instance.to_dict()
# create an instance of SeoKeywordDifficultyItem from a dict
seo_keyword_difficulty_item_from_dict = SeoKeywordDifficultyItem.from_dict(seo_keyword_difficulty_item_dict)

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