/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v4-mini"; import { ClosedEnum } from "../../types/enums.js"; export const SubscriptionModifyType = { Inheritance: "inheritance", QuantityChange: "quantity_change", GroupedInvoicing: "grouped_invoicing", TrialEnd: "trial_end", Coupon: "coupon", Tax: "tax", Addon: "addon", } as const; export type SubscriptionModifyType = ClosedEnum; /** @internal */ export const SubscriptionModifyType$outboundSchema: z.ZodMiniEnum< typeof SubscriptionModifyType > = z.enum(SubscriptionModifyType);