Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 904 Bytes

Topic.md

File metadata and controls

32 lines (23 loc) · 904 Bytes

Topic

Properties

Name Type Description Notes
total_topics int
number_of_messages int
topic_detail List[TopicDetail]
monthly_total_topics_diff int

Example

from iblai.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)

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