/* * 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 SubscriptionScheduleChangeType = { PlanChange: "plan_change", Cancellation: "cancellation", } as const; export type SubscriptionScheduleChangeType = OpenEnum< typeof SubscriptionScheduleChangeType >; /** @internal */ export const SubscriptionScheduleChangeType$inboundSchema: z.ZodMiniType< SubscriptionScheduleChangeType, unknown > = openEnums.inboundSchema(SubscriptionScheduleChangeType); /** @internal */ export const SubscriptionScheduleChangeType$outboundSchema: z.ZodMiniType< string, SubscriptionScheduleChangeType > = openEnums.outboundSchema(SubscriptionScheduleChangeType);