import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; /** * The reason the bank account status changed to the current value. */ export declare const BankAccountStatusReason: { readonly BankAccountCreated: "bank-account-created"; readonly VerificationInitiated: "verification-initiated"; readonly MicroDepositAttemptsExceeded: "micro-deposit-attempts-exceeded"; readonly MicroDepositExpired: "micro-deposit-expired"; readonly MaxVerificationFailures: "max-verification-failures"; readonly VerificationAttemptsExceeded: "verification-attempts-exceeded"; readonly VerificationExpired: "verification-expired"; readonly VerificationSuccessful: "verification-successful"; readonly AchDebitReturn: "ach-debit-return"; readonly AchCreditReturn: "ach-credit-return"; readonly RtpCreditFailure: "rtp-credit-failure"; readonly FednowCreditFailure: "fednow-credit-failure"; readonly MicroDepositReturn: "micro-deposit-return"; readonly AdminAction: "admin-action"; readonly Other: "other"; }; /** * The reason the bank account status changed to the current value. */ export type BankAccountStatusReason = ClosedEnum; /** @internal */ export declare const BankAccountStatusReason$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const BankAccountStatusReason$outboundSchema: z.ZodNativeEnum; //# sourceMappingURL=bankaccountstatusreason.d.ts.map