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