import { IParty } from "./party.interface"; export interface IOwnershipInformation { partyKey: string; fullName: string; effectiveStartDateTime: string; effectiveEndDateTime: string; ownershipTypeCode: string; ownershipCurrencyTypeCode: string; ownershipAmount: number; ownershipCount: number; party: IParty; }