import { IDataScheme } from "./data-scheme.interface"; import { IParty } from "./party.interface"; export interface I_Insured { dataSchemeKey: string; insurableInterestTypeCode: string; insuredFullName: string; insuredKey: string; insuredPartyKey: string; insuredProductComponentKey: string; insuredTypeCode: string; quotationDataSchemeKey: string; dataScheme: IDataScheme; quotationDataScheme: IDataScheme; party: IParty; }