import * as z from "zod/v3"; import { Decimal as Decimal$ } from "../../types/decimal.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type TargetAccountOption = { /** * Id of the target account. */ id?: string | undefined; /** * Name of the target account. */ name?: string | null | undefined; /** * The balance of the account. */ balance?: Decimal$ | number | null | undefined; /** * The sort code of the account. */ sortCode?: string | null | undefined; /** * The account number of the account. */ accountNumber?: string | null | undefined; }; /** @internal */ export declare const TargetAccountOption$inboundSchema: z.ZodType; export declare function targetAccountOptionFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=targetaccountoption.d.ts.map