import * as z from "zod/v3"; import * as components from "../components/index.js"; import { Gr4vyError } from "./gr4vyerror.js"; export type Error409Data = { /** * Always `error`. */ type?: "error" | undefined; /** * Always `duplicate_record` */ code?: string | undefined; /** * Always `409`. */ status?: number | undefined; /** * A human readable message that provides more context to the error. */ message?: string | undefined; /** * A list of details that further ellaborate on the error. */ details?: Array | undefined; /** * The ID of the conflicting resource. */ resourceId?: string | null | undefined; }; export declare class Error409 extends Gr4vyError { /** * Always `error`. */ type?: "error" | undefined; /** * Always `duplicate_record` */ code?: string | undefined; /** * Always `409`. */ status?: number | undefined; /** * A list of details that further ellaborate on the error. */ details?: Array | undefined; /** * The ID of the conflicting resource. */ resourceId?: string | null | undefined; /** The original data that was passed to this error instance. */ data$: Error409Data; constructor(err: Error409Data, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const Error409$inboundSchema: z.ZodType; //# sourceMappingURL=error409.d.ts.map