import * as z from "zod/v4-mini"; import { WebhookEventTypeEnum } from "./webhookeventtypeenum.js"; export type WebhookUpdateRequest = { /** * Type of event that triggered the webhook. */ event: WebhookEventTypeEnum; /** * URL webhook events are sent to. */ url: string; /** * Determines whether the webhook is active or not. */ active?: boolean | undefined; /** * Determines whether the webhook is a test webhook or not. */ isTest?: boolean | undefined; }; /** @internal */ export type WebhookUpdateRequest$Outbound = { event: string; url: string; active?: boolean | undefined; is_test?: boolean | undefined; }; /** @internal */ export declare const WebhookUpdateRequest$outboundSchema: z.ZodMiniType; export declare function webhookUpdateRequestToJSON(webhookUpdateRequest: WebhookUpdateRequest): string; //# sourceMappingURL=webhookupdaterequest.d.ts.map