/* * 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 TrialInterval = { Day: "day", Week: "week", Month: "month", Year: "year", } as const; export type TrialInterval = OpenEnum; /** @internal */ export const TrialInterval$inboundSchema: z.ZodMiniType< TrialInterval, unknown > = openEnums.inboundSchema(TrialInterval); /** @internal */ export const TrialInterval$outboundSchema: z.ZodMiniType< string, TrialInterval > = openEnums.outboundSchema(TrialInterval);