Skip to content

ConversationFeedbackCreate

Properties

NameTypeDescriptionNotes
conversation_idstr
dataData

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)

[Back to API list] [Back to SDK]

Released under the MIT License.