import type * as SarvamAI from "../index.js"; export interface DocAiErrorModel { /** A URI reference to human-readable documentation for the error. */ type?: string | undefined; /** A short, human-readable summary of the problem type. */ title?: string | undefined; /** HTTP status code. */ status?: number | undefined; /** A human-readable explanation specific to this occurrence of the problem. */ detail?: string | undefined; /** A URI reference that identifies the specific occurrence of the problem. */ instance?: string | undefined; /** Optional list of individual error details. */ errors?: SarvamAI.DocAiErrorDetail[] | undefined; }