import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type Result = { /** * The error status code for the attempted creation of the source account. */ statusCode?: string | undefined; /** * The error description for the attempted creation of the source account. */ error?: string | undefined; }; /** * Describes the error that occured when trying to create the specified source account. */ export type SourceAccountBatchErrorResponse = { /** * Unique ID for the source account. */ sourceAccountId?: string | undefined; result?: Result | undefined; }; /** @internal */ export declare const Result$inboundSchema: z.ZodType; export declare function resultFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const SourceAccountBatchErrorResponse$inboundSchema: z.ZodType; export declare function sourceAccountBatchErrorResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=sourceaccountbatcherrorresponse.d.ts.map