/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: 3fc6befb0985 */ import * as z from "zod/v3"; import * as openEnums from "../../types/enums.js"; import { OpenEnum } from "../../types/enums.js"; export const CommunicationChannel = { CommunicationChannelEmail: "COMMUNICATION_CHANNEL_EMAIL", CommunicationChannelSlack: "COMMUNICATION_CHANNEL_SLACK", } as const; export type CommunicationChannel = OpenEnum; /** @internal */ export const CommunicationChannel$inboundSchema: z.ZodType< CommunicationChannel, z.ZodTypeDef, unknown > = openEnums.inboundSchema(CommunicationChannel); /** @internal */ export const CommunicationChannel$outboundSchema: z.ZodType< string, z.ZodTypeDef, CommunicationChannel > = openEnums.outboundSchema(CommunicationChannel);