/* * 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 BillingModel = { FlatFee: "FLAT_FEE", Package: "PACKAGE", Tiered: "TIERED", } as const; export type BillingModel = OpenEnum; /** @internal */ export const BillingModel$inboundSchema: z.ZodMiniType = openEnums.inboundSchema(BillingModel); /** @internal */ export const BillingModel$outboundSchema: z.ZodMiniType = openEnums.outboundSchema(BillingModel);