import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Result of generate credentials */ export type BankAccountCredentials = { /** * Username used by the bank feeds platform to retrieve transactions */ username?: string | undefined; /** * Password to enable the bank feeds platform to securely retrieve transactions. */ password?: string | undefined; }; /** @internal */ export declare const BankAccountCredentials$inboundSchema: z.ZodType; export declare function bankAccountCredentialsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=bankaccountcredentials.d.ts.map