@twinfinity/t8-client-modelInterfacesT8PropertySetOn this pageT8PropertySet <TUnit>Represents a property set containing properties and nested property sets. Property sets organize related properties together (e.g., material properties, geometry properties).@exampleconst propertySet: T8PropertySet<T8Unit> = { name: "Pset_WallCommon", properties: { "IsExternal": { value: true, type: "IfcBoolean" }, "LoadBearing": { value: true, type: "IfcBoolean" } }, sets: {}};Index PropertiesnamepropertiessetsProperties namename: stringThe name of the property setpropertiesproperties: Record<string, T8Property<TUnit> | T8Property<TUnit>[]>Collection of properties in this set. Can be a single property or an array of properties (when conflicts exist).setssets: Record<string, T8PropertySet<TUnit>>Nested property sets contained within this set
Represents a property set containing properties and nested property sets. Property sets organize related properties together (e.g., material properties, geometry properties).