import * as z from "zod/v3"; import * as shared from "../shared/index.js"; export type CreateBankTransactionsRequest = { /** * Unique identifier for a company. */ companyId: string; /** * Unique identifier for a connection. */ connectionId: string; /** * Unique identifier for an account. */ accountId: string; /** * Time limit for the push operation to complete before it is timed out. */ timeoutInMinutes?: number | undefined; /** * Allow a sync upon push completion. */ allowSyncOnPushComplete?: boolean | undefined; createBankTransactions?: shared.CreateBankTransactions | undefined; }; /** @internal */ export type CreateBankTransactionsRequest$Outbound = { companyId: string; connectionId: string; accountId: string; timeoutInMinutes?: number | undefined; allowSyncOnPushComplete: boolean; CreateBankTransactions?: shared.CreateBankTransactions$Outbound | undefined; }; /** @internal */ export declare const CreateBankTransactionsRequest$outboundSchema: z.ZodType; export declare function createBankTransactionsRequestToJSON(createBankTransactionsRequest: CreateBankTransactionsRequest): string; //# sourceMappingURL=createbanktransactions.d.ts.map