import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { SourceAccount } from "./sourceaccount.js"; /** * Status details and corresponding object of the `Create account` operation. */ export type SourceAccountBatchCreateResult = { /** * The HTTP status code for the creation of the source account */ statusCode?: number | undefined; /** * A brief description of the error. */ error?: string | null | undefined; /** * The target bank account in a supported accounting software for ingestion into a bank feed. */ account?: SourceAccount | undefined; }; /** @internal */ export declare const SourceAccountBatchCreateResult$inboundSchema: z.ZodType; export declare function sourceAccountBatchCreateResultFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=sourceaccountbatchcreateresult.d.ts.map