import { IIfcActorRole } from './IfcActorRole'; import { IIfcAddress } from './IfcAddress'; import { IfcOrganizationRelationship } from './IfcOrganizationRelationship'; import { IIfcPersonAndOrganization } from './IfcPersonAndOrganization'; export interface IIfcOrganization { Id?: string; Name?: string; Description?: string; Roles?: IIfcActorRole; Addresses?: IIfcAddress; IsRelatedBy?: IfcOrganizationRelationship; Relates?: IfcOrganizationRelationship; Engages?: IIfcPersonAndOrganization; }