/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; /** * Type of the email block */ export const EmailBlockTypeEnum = { Button: "button", Text: "text", } as const; /** * Type of the email block */ export type EmailBlockTypeEnum = ClosedEnum; /** @internal */ export const EmailBlockTypeEnum$inboundSchema: z.ZodNativeEnum< typeof EmailBlockTypeEnum > = z.nativeEnum(EmailBlockTypeEnum);