| Name |
Type |
Description |
Notes |
| intent |
str |
Search intent: informational, navigational, commercial, or transactional. |
|
| probability |
float |
Probability of this intent, where 1 is highest. |
[optional] |
from unifapi.models.seo_keyword_intent_entry import SeoKeywordIntentEntry
# TODO update the JSON string below
json = "{}"
# create an instance of SeoKeywordIntentEntry from a JSON string
seo_keyword_intent_entry_instance = SeoKeywordIntentEntry.from_json(json)
# print the JSON string representation of the object
print(SeoKeywordIntentEntry.to_json())
# convert the object into a dict
seo_keyword_intent_entry_dict = seo_keyword_intent_entry_instance.to_dict()
# create an instance of SeoKeywordIntentEntry from a dict
seo_keyword_intent_entry_from_dict = SeoKeywordIntentEntry.from_dict(seo_keyword_intent_entry_dict)
[Back to Model list] [Back to API list] [Back to README]