Skip to content

ConversationFeedback

ConversationFeedbackIn is used to receive feedback for a specific conversation

Properties

NameTypeDescriptionNotes
idstr
conversation_idstr
user_idstr
user_interview_idstr
created_atdatetime
dataData

Example

python
from syntheticusers.models.conversation_feedback import ConversationFeedback

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

# convert the object into a dict
conversation_feedback_dict = conversation_feedback_instance.to_dict()
# create an instance of ConversationFeedback from a dict
conversation_feedback_from_dict = ConversationFeedback.from_dict(conversation_feedback_dict)

[Back to API list] [Back to SDK]

Released under the MIT License.