Skip to content

Conversation

Properties

NameTypeDescriptionNotes
idstr
typestr
messagestr
topicstr[optional]
initialbool
created_atdatetime
interview_idstr
annotationsList[Annotation]
feedbackList[ConversationFeedback]

Example

python
from syntheticusers.models.conversation import Conversation

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

# convert the object into a dict
conversation_dict = conversation_instance.to_dict()
# create an instance of Conversation from a dict
conversation_from_dict = Conversation.from_dict(conversation_dict)

[Back to API list] [Back to SDK]

Released under the MIT License.