/* * 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 * |:---|:---| * | mondial_relay_pointrelais | Point Relais| */ export const ServiceLevelMondialRelayEnum = { MondialRelayPointrelais: "mondial_relay_pointrelais", } as const; /** * |Token | Service name| * * @remarks * |:---|:---| * | mondial_relay_pointrelais | Point Relais| */ export type ServiceLevelMondialRelayEnum = ClosedEnum< typeof ServiceLevelMondialRelayEnum >; /** @internal */ export const ServiceLevelMondialRelayEnum$inboundSchema: z.ZodMiniEnum< typeof ServiceLevelMondialRelayEnum > = z.enum(ServiceLevelMondialRelayEnum); /** @internal */ export const ServiceLevelMondialRelayEnum$outboundSchema: z.ZodMiniEnum< typeof ServiceLevelMondialRelayEnum > = ServiceLevelMondialRelayEnum$inboundSchema;