Appearance
ConversationFeedbackHelpful
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| type | ConversationFeedbackType | [optional] | |
| helpful | bool |
Example
python
from syntheticusers.models.conversation_feedback_helpful import ConversationFeedbackHelpful
# TODO update the JSON string below
json = "{}"
# create an instance of ConversationFeedbackHelpful from a JSON string
conversation_feedback_helpful_instance = ConversationFeedbackHelpful.from_json(json)
# print the JSON string representation of the object
print(ConversationFeedbackHelpful.to_json())
# convert the object into a dict
conversation_feedback_helpful_dict = conversation_feedback_helpful_instance.to_dict()
# create an instance of ConversationFeedbackHelpful from a dict
conversation_feedback_helpful_from_dict = ConversationFeedbackHelpful.from_dict(conversation_feedback_helpful_dict)