/* * 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 * |:---|:---| * | airterra_ground | GroundXC| * | airterra_postal | FastPost| */ export const ServiceLevelAirterraEnum = { AirterraGround: "airterra_ground", AirterraPostal: "airterra_postal", } as const; /** * |Token | Service name| * * @remarks * |:---|:---| * | airterra_ground | GroundXC| * | airterra_postal | FastPost| */ export type ServiceLevelAirterraEnum = ClosedEnum< typeof ServiceLevelAirterraEnum >; /** @internal */ export const ServiceLevelAirterraEnum$inboundSchema: z.ZodMiniEnum< typeof ServiceLevelAirterraEnum > = z.enum(ServiceLevelAirterraEnum); /** @internal */ export const ServiceLevelAirterraEnum$outboundSchema: z.ZodMiniEnum< typeof ServiceLevelAirterraEnum > = ServiceLevelAirterraEnum$inboundSchema;