# UpdateQAFeedbackRequest ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **expected_answer** | **str** | | **user_comment** | **str** | | ## Example ```python from h2ogpte.rest_async.models.update_qa_feedback_request import UpdateQAFeedbackRequest # TODO update the JSON string below json = "{}" # create an instance of UpdateQAFeedbackRequest from a JSON string update_qa_feedback_request_instance = UpdateQAFeedbackRequest.from_json(json) # print the JSON string representation of the object print(UpdateQAFeedbackRequest.to_json()) # convert the object into a dict update_qa_feedback_request_dict = update_qa_feedback_request_instance.to_dict() # create an instance of UpdateQAFeedbackRequest from a dict update_qa_feedback_request_from_dict = UpdateQAFeedbackRequest.from_dict(update_qa_feedback_request_dict) ```