/* * 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 InvoiceType = { Subscription: "SUBSCRIPTION", OneOff: "ONE_OFF", Credit: "CREDIT", } as const; export type InvoiceType = OpenEnum; /** @internal */ export const InvoiceType$inboundSchema: z.ZodMiniType = openEnums.inboundSchema(InvoiceType); /** @internal */ export const InvoiceType$outboundSchema: z.ZodMiniType = openEnums.outboundSchema(InvoiceType);