Topic
Name | Type | Description | Notes |
---|---|---|---|
label | str | The topic title. | [optional] |
description | str | The topic description. | [optional] |
uri | str | The topic URI. | [optional] |
confidence | float | The topic confidence score. | [optional] |
images | List[str] | A list of image URIs. | [optional] |
same_as | List[str] | A list of sameas URIs. | [optional] |
from wordlift_client.models.topic import Topic
# TODO update the JSON string below
json = "{}"
# create an instance of Topic from a JSON string
topic_instance = Topic.from_json(json)
# print the JSON string representation of the object
print(Topic.to_json())
# convert the object into a dict
topic_dict = topic_instance.to_dict()
# create an instance of Topic from a dict
topic_from_dict = Topic.from_dict(topic_dict)