/* * 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 * |:---|:---| * | veho_ground_plus | Veho Ground Plus | * | veho_premium_economy | Veho Premium Economy */ export const ServiceLevelVehoEnum = { VehoGroundPlus: "veho_ground_plus", VehoPremiumEconomy: "veho_premium_economy", } as const; /** * |Token | Service name| * * @remarks * |:---|:---| * | veho_ground_plus | Veho Ground Plus | * | veho_premium_economy | Veho Premium Economy */ export type ServiceLevelVehoEnum = ClosedEnum; /** @internal */ export const ServiceLevelVehoEnum$inboundSchema: z.ZodMiniEnum< typeof ServiceLevelVehoEnum > = z.enum(ServiceLevelVehoEnum); /** @internal */ export const ServiceLevelVehoEnum$outboundSchema: z.ZodMiniEnum< typeof ServiceLevelVehoEnum > = ServiceLevelVehoEnum$inboundSchema;