import { IContactPoint } from "./contact-point.interface"; import { IDataScheme } from "./data-scheme.interface"; import { IParty } from "./party.interface"; export interface IBeneficiary { beneficiaryPartyKey: string; beneficiaryContactPointKey: string; beneficiaryFullName: string; beneficiaryTypeCode: string; irrevocableIndicator: boolean; designationCode: string; percentage: number; replaceToPartyKey: string; party: IParty; contactPoint: IContactPoint; personDataScheme: IDataScheme; companyDataScheme: IDataScheme; personDataSchemeKey: string; companyDataSchemeKey: string; }