/* * 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 BillingTier = { Volume: "VOLUME", Slab: "SLAB", } as const; export type BillingTier = OpenEnum; /** @internal */ export const BillingTier$inboundSchema: z.ZodMiniType = openEnums.inboundSchema(BillingTier); /** @internal */ export const BillingTier$outboundSchema: z.ZodMiniType = openEnums.outboundSchema(BillingTier);