Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.19 KB

ConversationMessage.md

File metadata and controls

36 lines (27 loc) · 1.19 KB

ConversationMessage

Properties

Name Type Description Notes
first_message str [readonly]
topics List[TopicModel]
id str
user_id str
message_count int [readonly]
model str
inserted_at datetime
user_sentiment str [readonly]

Example

from iblai.models.conversation_message import ConversationMessage

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

# convert the object into a dict
conversation_message_dict = conversation_message_instance.to_dict()
# create an instance of ConversationMessage from a dict
conversation_message_from_dict = ConversationMessage.from_dict(conversation_message_dict)

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