/** * Generated by orval v7.21.0 🍺 * Do not edit manually. * Negodata Api Server * OpenAPI spec version: 0.1.0 */ import type { ErrorInfo } from './errorInfo'; import type { ResSessionChatMsg } from './resSessionChatMsg'; import type { ResSessionChatSessionId } from './resSessionChatSessionId'; import type { ChatMessageData } from './chatMessageData'; export interface ResSessionChat { result?: ErrorInfo; msg?: ResSessionChatMsg; session_id?: ResSessionChatSessionId; messages?: ChatMessageData[]; }