import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; /** * Status codes for RTP failures. */ export declare const RTPFailureCode: { readonly ProcessingError: "processing-error"; readonly InvalidAccount: "invalid-account"; readonly AccountClosed: "account-closed"; readonly AccountBlocked: "account-blocked"; readonly InvalidField: "invalid-field"; readonly TransactionNotSupported: "transaction-not-supported"; readonly LimitExceeded: "limit-exceeded"; readonly InvalidAmount: "invalid-amount"; readonly CustomerDeceased: "customer-deceased"; readonly Other: "other"; }; /** * Status codes for RTP failures. */ export type RTPFailureCode = ClosedEnum; /** @internal */ export declare const RTPFailureCode$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const RTPFailureCode$outboundSchema: z.ZodNativeEnum; //# sourceMappingURL=rtpfailurecode.d.ts.map