import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { AddressCreate, AddressCreate$Outbound } from "./addresscreate.js"; /** * A Check Beneficiary */ export type TransfersBeneficiaryCreate = { /** * **Field Dependencies:** * * @remarks * * Account title is required for third party beneficiaries * * Required if `third_party` is `true`. */ accountTitle?: string | undefined; /** * The data structure containing attributes describing the location of an underlying entity. */ address?: AddressCreate | undefined; /** * Indicates if this beneficiary is a third party beneficiary. A check transfer is considered third party if the beneficiary is not the exact same person and/or entity that the funds originated from. This includes check transfers where the originator account is an individual account and the beneficiary account is a joint account */ thirdParty?: boolean | undefined; }; /** @internal */ export declare const TransfersBeneficiaryCreate$inboundSchema: z.ZodType; /** @internal */ export type TransfersBeneficiaryCreate$Outbound = { account_title?: string | undefined; address?: AddressCreate$Outbound | undefined; third_party?: boolean | undefined; }; /** @internal */ export declare const TransfersBeneficiaryCreate$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace TransfersBeneficiaryCreate$ { /** @deprecated use `TransfersBeneficiaryCreate$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `TransfersBeneficiaryCreate$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `TransfersBeneficiaryCreate$Outbound` instead. */ type Outbound = TransfersBeneficiaryCreate$Outbound; } export declare function transfersBeneficiaryCreateToJSON(transfersBeneficiaryCreate: TransfersBeneficiaryCreate): string; export declare function transfersBeneficiaryCreateFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=transfersbeneficiarycreate.d.ts.map