/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: ae53fa8e859a */ import * as z from "zod/v4"; export type SlackNotificationChannelRequest = { channelId: string | null; }; /** @internal */ export type SlackNotificationChannelRequest$Outbound = { channelId: string | null; }; /** @internal */ export const SlackNotificationChannelRequest$outboundSchema: z.ZodType< SlackNotificationChannelRequest$Outbound, SlackNotificationChannelRequest > = z.object({ channelId: z.nullable(z.string()), }); export function slackNotificationChannelRequestToJSON( slackNotificationChannelRequest: SlackNotificationChannelRequest, ): string { return JSON.stringify( SlackNotificationChannelRequest$outboundSchema.parse( slackNotificationChannelRequest, ), ); }