import * as z from "zod/v3"; import * as shared from "../shared/index.js"; export type CreateBankAccountMappingRequest = { /** * Unique identifier for a company. */ companyId: string; /** * Unique identifier for a connection. */ connectionId: string; bankFeedAccountMapping?: shared.BankFeedAccountMapping | undefined; }; /** @internal */ export type CreateBankAccountMappingRequest$Outbound = { companyId: string; connectionId: string; BankFeedAccountMapping?: shared.BankFeedAccountMapping$Outbound | undefined; }; /** @internal */ export declare const CreateBankAccountMappingRequest$outboundSchema: z.ZodType; export declare function createBankAccountMappingRequestToJSON(createBankAccountMappingRequest: CreateBankAccountMappingRequest): string; //# sourceMappingURL=createbankaccountmapping.d.ts.map