Appearance
ConversationFeedbackCreate
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| conversation_id | str | ||
| data | Data |
Example
python
from syntheticusers.models.conversation_feedback_create import ConversationFeedbackCreate
# TODO update the JSON string below
json = "{}"
# create an instance of ConversationFeedbackCreate from a JSON string
conversation_feedback_create_instance = ConversationFeedbackCreate.from_json(json)
# print the JSON string representation of the object
print(ConversationFeedbackCreate.to_json())
# convert the object into a dict
conversation_feedback_create_dict = conversation_feedback_create_instance.to_dict()
# create an instance of ConversationFeedbackCreate from a dict
conversation_feedback_create_from_dict = ConversationFeedbackCreate.from_dict(conversation_feedback_create_dict)