Appearance
ConversationFeedbackUpdate
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| data | Data |
Example
python
from syntheticusers.models.conversation_feedback_update import ConversationFeedbackUpdate
# TODO update the JSON string below
json = "{}"
# create an instance of ConversationFeedbackUpdate from a JSON string
conversation_feedback_update_instance = ConversationFeedbackUpdate.from_json(json)
# print the JSON string representation of the object
print(ConversationFeedbackUpdate.to_json())
# convert the object into a dict
conversation_feedback_update_dict = conversation_feedback_update_instance.to_dict()
# create an instance of ConversationFeedbackUpdate from a dict
conversation_feedback_update_from_dict = ConversationFeedbackUpdate.from_dict(conversation_feedback_update_dict)