/* * 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 * |:---|:---| * | royal_mail_sf_tracked_48 | Royal Mail Tracked 48| * | royal_mail_sf_tracked_48_for_post_office_drop | Royal Mail Tracked 48 for Post Office Drop| * | royal_mail_sf_international_tracked | Royal Mail International Tracked | * | royal_mail_sf_tracked_48_with_signature_confirmation | Royal Mail Tracked 48 with Signature | * | royal_mail_sf_tracked_48_for_post_office_drop_with_signature_confirmation | Royal Mail Tracked 48 for Post Office Drop with Signature | * | royal_mail_sf_tracked_24 | Royal Mail Tracked 24 | * | royal_mail_sf_tracked_24_for_post_office_drop | Royal Mail Tracked 24 for Post Office Drop | * | royal_mail_sf_tracked_24_for_post_office_drop_with_signature_confirmation | Royal Mail Tracked 24 for Post Office Drop with Signature | * | royal_mail_sf_international_tracked_for_post_office_drop | Royal Mail International Tracked for Post Office Drop | * | royal_mail_sf_international_tracked_with_signature_confirmation | Royal Mail International Tracked with Signature | * | royal_mail_sf_international_tracked_for_post_office_drop_with_signature_confirmation | Royal Mail International Tracked for Post Office Drop with Signature | */ export const ServiceLevelRoyalMailSFEnum = { RoyalMailSfTracked48: "royal_mail_sf_tracked_48", RoyalMailSfTracked48ForPostOfficeDrop: "royal_mail_sf_tracked_48_for_post_office_drop", RoyalMailSfInternationalTracked: "royal_mail_sf_international_tracked", RoyalMailSfTracked48WithSignatureConfirmation: "royal_mail_sf_tracked_48_with_signature_confirmation", RoyalMailSfTracked48ForPostOfficeDropWithSignatureConfirmation: "royal_mail_sf_tracked_48_for_post_office_drop_with_signature_confirmation", RoyalMailSfTracked24: "royal_mail_sf_tracked_24", RoyalMailSfTracked24ForPostOfficeDrop: "royal_mail_sf_tracked_24_for_post_office_drop", RoyalMailSfTracked24ForPostOfficeDropWithSignatureConfirmation: "royal_mail_sf_tracked_24_for_post_office_drop_with_signature_confirmation", RoyalMailSfInternationalTrackedForPostOfficeDrop: "royal_mail_sf_international_tracked_for_post_office_drop", RoyalMailSfInternationalTrackedWithSignatureConfirmation: "royal_mail_sf_international_tracked_with_signature_confirmation", RoyalMailSfInternationalTrackedForPostOfficeDropWithSignatureConfirmation: "royal_mail_sf_international_tracked_for_post_office_drop_with_signature_confirmation", } as const; /** * |Token | Service name| * * @remarks * |:---|:---| * | royal_mail_sf_tracked_48 | Royal Mail Tracked 48| * | royal_mail_sf_tracked_48_for_post_office_drop | Royal Mail Tracked 48 for Post Office Drop| * | royal_mail_sf_international_tracked | Royal Mail International Tracked | * | royal_mail_sf_tracked_48_with_signature_confirmation | Royal Mail Tracked 48 with Signature | * | royal_mail_sf_tracked_48_for_post_office_drop_with_signature_confirmation | Royal Mail Tracked 48 for Post Office Drop with Signature | * | royal_mail_sf_tracked_24 | Royal Mail Tracked 24 | * | royal_mail_sf_tracked_24_for_post_office_drop | Royal Mail Tracked 24 for Post Office Drop | * | royal_mail_sf_tracked_24_for_post_office_drop_with_signature_confirmation | Royal Mail Tracked 24 for Post Office Drop with Signature | * | royal_mail_sf_international_tracked_for_post_office_drop | Royal Mail International Tracked for Post Office Drop | * | royal_mail_sf_international_tracked_with_signature_confirmation | Royal Mail International Tracked with Signature | * | royal_mail_sf_international_tracked_for_post_office_drop_with_signature_confirmation | Royal Mail International Tracked for Post Office Drop with Signature | */ export type ServiceLevelRoyalMailSFEnum = ClosedEnum< typeof ServiceLevelRoyalMailSFEnum >; /** @internal */ export const ServiceLevelRoyalMailSFEnum$inboundSchema: z.ZodMiniEnum< typeof ServiceLevelRoyalMailSFEnum > = z.enum(ServiceLevelRoyalMailSFEnum); /** @internal */ export const ServiceLevelRoyalMailSFEnum$outboundSchema: z.ZodMiniEnum< typeof ServiceLevelRoyalMailSFEnum > = ServiceLevelRoyalMailSFEnum$inboundSchema;