import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type BankFeedAccountMappingResponse = { /** * Unique ID for the source account. */ sourceAccountId?: string | undefined; /** * Unique ID for the target account. */ targetAccountId?: string | null | undefined; /** * Status of the POST request. */ status?: string | null | undefined; /** * Error returned during the post request */ error?: string | null | undefined; }; /** @internal */ export declare const BankFeedAccountMappingResponse$inboundSchema: z.ZodType; export declare function bankFeedAccountMappingResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=bankfeedaccountmappingresponse.d.ts.map