Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.2 KB

UserChatFeedback.md

File metadata and controls

38 lines (29 loc) · 1.2 KB

UserChatFeedback

Properties

Name Type Description Notes
id int [readonly]
username str
session str
user_text str
ai_response str
reason str
additional_feedback str
rating RatingEnum [optional]
inserted_at datetime [optional]
mentor int

Example

from iblai.models.user_chat_feedback import UserChatFeedback

# TODO update the JSON string below
json = "{}"
# create an instance of UserChatFeedback from a JSON string
user_chat_feedback_instance = UserChatFeedback.from_json(json)
# print the JSON string representation of the object
print(UserChatFeedback.to_json())

# convert the object into a dict
user_chat_feedback_dict = user_chat_feedback_instance.to_dict()
# create an instance of UserChatFeedback from a dict
user_chat_feedback_from_dict = UserChatFeedback.from_dict(user_chat_feedback_dict)

[Back to Model list] [Back to API list] [Back to README]