/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: b38b4eb6c7ed */ import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; /** * The name for a generated classification of an event. */ export const EventClassificationName = { ExternalEvent: "External Event", } as const; /** * The name for a generated classification of an event. */ export type EventClassificationName = ClosedEnum< typeof EventClassificationName >; /** @internal */ export const EventClassificationName$inboundSchema: z.ZodNativeEnum< typeof EventClassificationName > = z.nativeEnum(EventClassificationName);