import * as z from "zod/v3"; import * as shared from "../shared/index.js"; export type CreateBankAccountRequest = { /** * Unique identifier for a company. */ companyId: string; /** * Unique identifier for a connection. */ connectionId: string; /** * Time limit for the push operation to complete before it is timed out. */ timeoutInMinutes?: number | undefined; bankAccountPrototype?: shared.BankAccountPrototype | undefined; }; /** @internal */ export type CreateBankAccountRequest$Outbound = { companyId: string; connectionId: string; timeoutInMinutes?: number | undefined; bankAccountPrototype?: shared.BankAccountPrototype$Outbound | undefined; }; /** @internal */ export declare const CreateBankAccountRequest$outboundSchema: z.ZodType; export declare function createBankAccountRequestToJSON(createBankAccountRequest: CreateBankAccountRequest): string; //# sourceMappingURL=createbankaccount.d.ts.map