Appearance
ConversationFeedbackComment
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| type | ConversationFeedbackType | [optional] | |
| comment | str |
Example
python
from syntheticusers.models.conversation_feedback_comment import ConversationFeedbackComment
# TODO update the JSON string below
json = "{}"
# create an instance of ConversationFeedbackComment from a JSON string
conversation_feedback_comment_instance = ConversationFeedbackComment.from_json(json)
# print the JSON string representation of the object
print(ConversationFeedbackComment.to_json())
# convert the object into a dict
conversation_feedback_comment_dict = conversation_feedback_comment_instance.to_dict()
# create an instance of ConversationFeedbackComment from a dict
conversation_feedback_comment_from_dict = ConversationFeedbackComment.from_dict(conversation_feedback_comment_dict)