/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; /** * Type of button for the action result */ export const ButtonTypeEnum = { Primary: "primary", Secondary: "secondary", } as const; /** * Type of button for the action result */ export type ButtonTypeEnum = ClosedEnum; /** @internal */ export const ButtonTypeEnum$inboundSchema: z.ZodNativeEnum< typeof ButtonTypeEnum > = z.nativeEnum(ButtonTypeEnum);