import * as z from "zod/v3"; import * as components from "../components/index.js"; import { SDKBaseError } from "./sdkbaseerror.js"; export type ErrorModelData = { /** * A human-readable explanation specific to this occurrence of the problem. */ detail?: string | undefined; /** * Optional list of individual error details */ errors?: Array | null | undefined; /** * A URI reference that identifies the specific occurrence of the problem. */ instance?: string | undefined; /** * HTTP status code */ status?: number | undefined; /** * A short, human-readable summary of the problem type. This value should not change between occurrences of the error. */ title?: string | undefined; /** * A URI reference to human-readable documentation for the error. */ type?: string | undefined; }; export declare class ErrorModel extends SDKBaseError { /** * A human-readable explanation specific to this occurrence of the problem. */ detail?: string | undefined; /** * Optional list of individual error details */ errors?: Array | null | undefined; /** * A URI reference that identifies the specific occurrence of the problem. */ instance?: string | undefined; /** * HTTP status code */ status?: number | undefined; /** * A short, human-readable summary of the problem type. This value should not change between occurrences of the error. */ title?: string | undefined; /** * A URI reference to human-readable documentation for the error. */ type?: string | undefined; /** The original data that was passed to this error instance. */ data$: ErrorModelData; constructor(err: ErrorModelData, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const ErrorModel$inboundSchema: z.ZodType; //# sourceMappingURL=errormodel.d.ts.map