(element: ifcopenshell.entity_instance)
| 187 | |
| 188 | |
| 189 | def get_owner_name(element: ifcopenshell.entity_instance) -> Union[str, None]: |
| 190 | if not getattr(element, "OwnerHistory", None): |
| 191 | return |
| 192 | return element.OwnerHistory.OwningUser.TheOrganization.Name |
| 193 | |
| 194 | |
| 195 | def get_owner_creation_date(element: ifcopenshell.entity_instance) -> Union[str, None]: |
no outgoing calls
no test coverage detected