/* * 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 * |:---|:---| * | lasership_routed_delivery | Routed Delivery| */ export const ServiceLevelLasershipEnum = { LasershipRoutedDelivery: "lasership_routed_delivery", } as const; /** * |Token | Service name| * * @remarks * |:---|:---| * | lasership_routed_delivery | Routed Delivery| */ export type ServiceLevelLasershipEnum = ClosedEnum< typeof ServiceLevelLasershipEnum >; /** @internal */ export const ServiceLevelLasershipEnum$inboundSchema: z.ZodMiniEnum< typeof ServiceLevelLasershipEnum > = z.enum(ServiceLevelLasershipEnum); /** @internal */ export const ServiceLevelLasershipEnum$outboundSchema: z.ZodMiniEnum< typeof ServiceLevelLasershipEnum > = ServiceLevelLasershipEnum$inboundSchema;