/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v4-mini"; import * as openEnums from "../../types/enums.js"; import { OpenEnum } from "../../types/enums.js"; export const EntitlementGrantAllocationBehavior = { FirstUsage: "first_usage", UnitStart: "unit_start", } as const; export type EntitlementGrantAllocationBehavior = OpenEnum< typeof EntitlementGrantAllocationBehavior >; /** @internal */ export const EntitlementGrantAllocationBehavior$inboundSchema: z.ZodMiniType< EntitlementGrantAllocationBehavior, unknown > = openEnums.inboundSchema(EntitlementGrantAllocationBehavior); /** @internal */ export const EntitlementGrantAllocationBehavior$outboundSchema: z.ZodMiniType< string, EntitlementGrantAllocationBehavior > = openEnums.outboundSchema(EntitlementGrantAllocationBehavior);