import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { BankAccountException, BankAccountException$Outbound } from "./bankaccountexception.js"; import { BankAccountVerificationMethod } from "./bankaccountverificationmethod.js"; import { BankAccountVerificationStatus } from "./bankaccountverificationstatus.js"; export type BankAccountVerification = { verificationMethod: BankAccountVerificationMethod; status: BankAccountVerificationStatus; /** * Reason for, and details related to, an `errored` or `verificationFailed` bank account status. */ exceptionDetails?: BankAccountException | undefined; }; /** @internal */ export declare const BankAccountVerification$inboundSchema: z.ZodType; /** @internal */ export type BankAccountVerification$Outbound = { verificationMethod: string; status: string; exceptionDetails?: BankAccountException$Outbound | undefined; }; /** @internal */ export declare const BankAccountVerification$outboundSchema: z.ZodType; export declare function bankAccountVerificationToJSON(bankAccountVerification: BankAccountVerification): string; export declare function bankAccountVerificationFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=bankaccountverification.d.ts.map