/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ import type { NullEnum } from './NullEnum'; import type { RatingEnum } from './RatingEnum'; export type UserChatFeedback = { readonly id: number; username: string; session: string; user_text: string; ai_response: string; reason: string; additional_feedback: string; rating?: (RatingEnum | NullEnum) | null; inserted_at?: string; mentor: number; message?: number | null; };