/* * 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 ScheduleType = { Immediate: "immediate", EndOfPeriod: "end_of_period", } as const; export type ScheduleType = ClosedEnum; /** @internal */ export const ScheduleType$outboundSchema: z.ZodMiniEnum = z .enum(ScheduleType);