| Name |
Type |
Description |
Notes |
| keyword |
str |
Keyword phrase. |
|
| search_intent |
str |
Main search intent: informational, navigational, commercial, or transactional. |
[optional] |
| probability |
float |
Probability of the main search intent, where 1 is highest. |
[optional] |
| secondary_intents |
List[SeoKeywordIntentEntry] |
Other likely search intents for the keyword with their probabilities. |
[optional] |
from unifapi.models.seo_keyword_intent_item import SeoKeywordIntentItem
# TODO update the JSON string below
json = "{}"
# create an instance of SeoKeywordIntentItem from a JSON string
seo_keyword_intent_item_instance = SeoKeywordIntentItem.from_json(json)
# print the JSON string representation of the object
print(SeoKeywordIntentItem.to_json())
# convert the object into a dict
seo_keyword_intent_item_dict = seo_keyword_intent_item_instance.to_dict()
# create an instance of SeoKeywordIntentItem from a dict
seo_keyword_intent_item_from_dict = SeoKeywordIntentItem.from_dict(seo_keyword_intent_item_dict)
[Back to Model list] [Back to API list] [Back to README]