/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; /** * Type of monthly schedule */ export const MonthlyTypeEnum = { Each: "each", On: "on", } as const; /** * Type of monthly schedule */ export type MonthlyTypeEnum = ClosedEnum; /** @internal */ export const MonthlyTypeEnum$inboundSchema: z.ZodNativeEnum< typeof MonthlyTypeEnum > = z.nativeEnum(MonthlyTypeEnum);