import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import * as shared from "../shared/index.js"; export type CreateBatchSourceAccountRequestBody = Array | Array; export type CreateBatchSourceAccountRequest = { /** * Unique identifier for a company. */ companyId: string; /** * Unique identifier for a connection. */ connectionId: string; requestBody?: Array | Array | undefined; }; export type CreateBatchSourceAccountResponseBody = shared.SourceAccountV2BatchCreateResponse | shared.SourceAccountBatchCreateResponse | shared.SourceAccountBatchErrorResponse; export type ResponseBody = shared.SourceAccountV2BatchCreateResponse | shared.SourceAccountBatchCreateResponse; export type CreateBatchSourceAccountResponse = Array | Array; /** @internal */ export type CreateBatchSourceAccountRequestBody$Outbound = Array | Array; /** @internal */ export declare const CreateBatchSourceAccountRequestBody$outboundSchema: z.ZodType; export declare function createBatchSourceAccountRequestBodyToJSON(createBatchSourceAccountRequestBody: CreateBatchSourceAccountRequestBody): string; /** @internal */ export type CreateBatchSourceAccountRequest$Outbound = { companyId: string; connectionId: string; RequestBody?: Array | Array | undefined; }; /** @internal */ export declare const CreateBatchSourceAccountRequest$outboundSchema: z.ZodType; export declare function createBatchSourceAccountRequestToJSON(createBatchSourceAccountRequest: CreateBatchSourceAccountRequest): string; /** @internal */ export declare const CreateBatchSourceAccountResponseBody$inboundSchema: z.ZodType; export declare function createBatchSourceAccountResponseBodyFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const ResponseBody$inboundSchema: z.ZodType; export declare function responseBodyFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const CreateBatchSourceAccountResponse$inboundSchema: z.ZodType; export declare function createBatchSourceAccountResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=createbatchsourceaccount.d.ts.map