import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { SourceAccountBatchCreateResult } from "./sourceaccountbatchcreateresult.js"; /** * Account ID and resulting object of the batch `Create source account` request. */ export type SourceAccountBatchCreateResponse = { /** * Unique ID for the source account. */ sourceAccountId?: string | undefined; /** * Status details and corresponding object of the `Create account` operation. */ result?: SourceAccountBatchCreateResult | undefined; }; /** @internal */ export declare const SourceAccountBatchCreateResponse$inboundSchema: z.ZodType; export declare function sourceAccountBatchCreateResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=sourceaccountbatchcreateresponse.d.ts.map