/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v4-mini"; import { ClosedEnum } from "../../types/enums.js"; /** * Indicates the validity of the enclosing object */ export const ObjectStateEnum = { Valid: "VALID", Invalid: "INVALID", } as const; /** * Indicates the validity of the enclosing object */ export type ObjectStateEnum = ClosedEnum; /** @internal */ export const ObjectStateEnum$inboundSchema: z.ZodMiniEnum< typeof ObjectStateEnum > = z.enum(ObjectStateEnum); /** @internal */ export const ObjectStateEnum$outboundSchema: z.ZodMiniEnum< typeof ObjectStateEnum > = ObjectStateEnum$inboundSchema;