/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; /** * Type of call to action */ export const ChannelCTATypeEnum = { Redirect: "redirect", } as const; /** * Type of call to action */ export type ChannelCTATypeEnum = ClosedEnum; /** @internal */ export const ChannelCTATypeEnum$inboundSchema: z.ZodNativeEnum< typeof ChannelCTATypeEnum > = z.nativeEnum(ChannelCTATypeEnum);