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