/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v4-mini"; export type WebhooksGetWebhookEndpointRequest = { /** * The webhook endpoint ID. */ id: string; }; /** @internal */ export type WebhooksGetWebhookEndpointRequest$Outbound = { id: string; }; /** @internal */ export const WebhooksGetWebhookEndpointRequest$outboundSchema: z.ZodMiniType< WebhooksGetWebhookEndpointRequest$Outbound, WebhooksGetWebhookEndpointRequest > = z.object({ id: z.string(), }); export function webhooksGetWebhookEndpointRequestToJSON( webhooksGetWebhookEndpointRequest: WebhooksGetWebhookEndpointRequest, ): string { return JSON.stringify( WebhooksGetWebhookEndpointRequest$outboundSchema.parse( webhooksGetWebhookEndpointRequest, ), ); }