/* * 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 * |:---|:---| * | dpd_de_classic | DPD Classic| */ export const ServiceLevelDPDDEEnum = { DpdDeClassic: "dpd_de_classic", } as const; /** * |Token | Service name| * * @remarks * |:---|:---| * | dpd_de_classic | DPD Classic| */ export type ServiceLevelDPDDEEnum = ClosedEnum; /** @internal */ export const ServiceLevelDPDDEEnum$inboundSchema: z.ZodMiniEnum< typeof ServiceLevelDPDDEEnum > = z.enum(ServiceLevelDPDDEEnum); /** @internal */ export const ServiceLevelDPDDEEnum$outboundSchema: z.ZodMiniEnum< typeof ServiceLevelDPDDEEnum > = ServiceLevelDPDDEEnum$inboundSchema;