import { IOwnershipInformation } from "./ownership-information.interface" import { IPhysicalObjectAttribute } from "./physical-object-attribute.interface" import { IPhysicalObjectLocation } from "./physical-object-location.interface" export interface IPhysicalObject { physicalObjectKey: string versionDateTime: string physicalObjectClassCode: string identifierTypeCode: string identifier: string description: string physicalObjectDataSchemeKey: string grouperIndicator: boolean grouperPhysicalObjectKey: string attributeList: IPhysicalObjectAttribute[] ownershipInformationList: IOwnershipInformation[] location: IPhysicalObjectLocation }