import * as z from "zod/v3"; import { MoovError } from "./mooverror.js"; export type CreateWebhookValidationErrorData = { /** * Details about the URL validation error. */ url?: string | undefined; /** * Details about the status validation error. */ status?: string | undefined; /** * Details about the event types validation error. */ eventTypes?: string | undefined; /** * Details about the description validation error. */ description?: string | undefined; }; export declare class CreateWebhookValidationError extends MoovError { /** * Details about the URL validation error. */ url?: string | undefined; /** * Details about the status validation error. */ status?: string | undefined; /** * Details about the event types validation error. */ eventTypes?: string | undefined; /** * Details about the description validation error. */ description?: string | undefined; /** The original data that was passed to this error instance. */ data$: CreateWebhookValidationErrorData; constructor(err: CreateWebhookValidationErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const CreateWebhookValidationError$inboundSchema: z.ZodType; /** @internal */ export type CreateWebhookValidationError$Outbound = { url?: string | undefined; status?: string | undefined; eventTypes?: string | undefined; description?: string | undefined; }; /** @internal */ export declare const CreateWebhookValidationError$outboundSchema: z.ZodType; //# sourceMappingURL=createwebhookvalidationerror.d.ts.map