@twinfinity/core
    Preparing search index...

    Interface FacilityPart

    Distinct part of the facility (e.g. storey or railway part)

    interface FacilityPart {
        aggregatedFacilityParts?: string[];
        aggregatedSpaces?: string[];
        class: FacilityPartClass;
        elementQuantities?: ElementQuantities[];
        id: string;
        name?: string;
        propertySets?: PropertySet[];
    }
    Index

    Properties

    aggregatedFacilityParts?: string[]

    Facility parts that are parts of this part (e.g multiple floor 3 in on different height that are in different parts of the building)

    aggregatedSpaces?: string[]

    Spaces that are part of the facility part

    Type of facility part (e.g. IfcBuildingStorey)

    elementQuantities?: ElementQuantities[]
    id: string

    Unique identifier for the facility part

    name?: string
    propertySets?: PropertySet[]