/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v4-mini"; export type DeleteWebhookRequest = { /** * Object ID of the webhook to delete */ webhookId: string; }; /** @internal */ export type DeleteWebhookRequest$Outbound = { webhookId: string; }; /** @internal */ export const DeleteWebhookRequest$outboundSchema: z.ZodMiniType< DeleteWebhookRequest$Outbound, DeleteWebhookRequest > = z.object({ webhookId: z.string(), }); export function deleteWebhookRequestToJSON( deleteWebhookRequest: DeleteWebhookRequest, ): string { return JSON.stringify( DeleteWebhookRequest$outboundSchema.parse(deleteWebhookRequest), ); }