Appearance
ConversationFeedback
ConversationFeedbackIn is used to receive feedback for a specific conversation
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | ||
| conversation_id | str | ||
| user_id | str | ||
| user_interview_id | str | ||
| created_at | datetime | ||
| data | Data |
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)