Skip to content

ConversationFeedbackHelpful

Properties

NameTypeDescriptionNotes
typeConversationFeedbackType[optional]
helpfulbool

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)

[Back to API list] [Back to SDK]

Released under the MIT License.