/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v4-mini"; import { ClosedEnum } from "../../types/enums.js"; /** * |Token | Service name| * * @remarks * |:---|:---| * | ontrac_ground | Ground| * | ontrac_sunrise_gold | Sunrise Gold| * | ontrac_sunrise | Sunrise| */ export const ServiceLevelOnTracEnum = { OntracGround: "ontrac_ground", OntracSunriseGold: "ontrac_sunrise_gold", OntracSunrise: "ontrac_sunrise", } as const; /** * |Token | Service name| * * @remarks * |:---|:---| * | ontrac_ground | Ground| * | ontrac_sunrise_gold | Sunrise Gold| * | ontrac_sunrise | Sunrise| */ export type ServiceLevelOnTracEnum = ClosedEnum; /** @internal */ export const ServiceLevelOnTracEnum$inboundSchema: z.ZodMiniEnum< typeof ServiceLevelOnTracEnum > = z.enum(ServiceLevelOnTracEnum); /** @internal */ export const ServiceLevelOnTracEnum$outboundSchema: z.ZodMiniEnum< typeof ServiceLevelOnTracEnum > = ServiceLevelOnTracEnum$inboundSchema;