import * as z from "zod/v3"; export type InboundWebhooksControllerHandleWebhookRequest = { /** * The environment identifier */ environmentId: string; /** * The integration identifier for the delivery provider */ integrationId: string; /** * A header for idempotency purposes */ idempotencyKey?: string | undefined; /** * Webhook event payload from the delivery provider */ requestBody: { [k: string]: any; }; }; /** @internal */ export type InboundWebhooksControllerHandleWebhookRequest$Outbound = { environmentId: string; integrationId: string; "idempotency-key"?: string | undefined; RequestBody: { [k: string]: any; }; }; /** @internal */ export declare const InboundWebhooksControllerHandleWebhookRequest$outboundSchema: z.ZodType; export declare function inboundWebhooksControllerHandleWebhookRequestToJSON(inboundWebhooksControllerHandleWebhookRequest: InboundWebhooksControllerHandleWebhookRequest): string; //# sourceMappingURL=inboundwebhookscontrollerhandlewebhook.d.ts.map