/* * 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 * |:---|:---| * | fastway_australia_parcel | Parcel| * | fastway_australia_satchel | Satchel| * | fastway_australia_box_small | Box Small| * | fastway_australia_box_medium | Box Medium| * | fastway_australia_box_large | Box Large| */ export const ServiceLevelAramexAustraliaEnum = { FastwayAustraliaParcel: "fastway_australia_parcel", FastwayAustraliaSatchel: "fastway_australia_satchel", FastwayAustraliaBoxSmall: "fastway_australia_box_small", FastwayAustraliaBoxMedium: "fastway_australia_box_medium", FastwayAustraliaBoxLarge: "fastway_australia_box_large", } as const; /** * |Token | Service name| * * @remarks * |:---|:---| * | fastway_australia_parcel | Parcel| * | fastway_australia_satchel | Satchel| * | fastway_australia_box_small | Box Small| * | fastway_australia_box_medium | Box Medium| * | fastway_australia_box_large | Box Large| */ export type ServiceLevelAramexAustraliaEnum = ClosedEnum< typeof ServiceLevelAramexAustraliaEnum >; /** @internal */ export const ServiceLevelAramexAustraliaEnum$inboundSchema: z.ZodMiniEnum< typeof ServiceLevelAramexAustraliaEnum > = z.enum(ServiceLevelAramexAustraliaEnum); /** @internal */ export const ServiceLevelAramexAustraliaEnum$outboundSchema: z.ZodMiniEnum< typeof ServiceLevelAramexAustraliaEnum > = ServiceLevelAramexAustraliaEnum$inboundSchema;