import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; /** * The rejection code of an RTP transaction that caused the bank account status to change. * * @remarks * * - AC03: Account Invalid * - AC04: Account Closed * - AC06: Account Blocked * - AC14: Creditor Account Type Invalid * - AG01: Transactions Forbidden On Account * - AG03: Transaction Type Not Supported * - MD07: Customer Deceased */ export declare const RTPRejectionCode: { readonly Ac03: "AC03"; readonly Ac04: "AC04"; readonly Ac06: "AC06"; readonly Ac14: "AC14"; readonly Ag01: "AG01"; readonly Ag03: "AG03"; readonly Md07: "MD07"; }; /** * The rejection code of an RTP transaction that caused the bank account status to change. * * @remarks * * - AC03: Account Invalid * - AC04: Account Closed * - AC06: Account Blocked * - AC14: Creditor Account Type Invalid * - AG01: Transactions Forbidden On Account * - AG03: Transaction Type Not Supported * - MD07: Customer Deceased */ export type RTPRejectionCode = ClosedEnum; /** @internal */ export declare const RTPRejectionCode$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const RTPRejectionCode$outboundSchema: z.ZodNativeEnum; //# sourceMappingURL=rtprejectioncode.d.ts.map