(element: ifcopenshell.entity_instance)
| 193 | |
| 194 | |
| 195 | def get_owner_creation_date(element: ifcopenshell.entity_instance) -> Union[str, None]: |
| 196 | if not getattr(element, "OwnerHistory", None): |
| 197 | return |
| 198 | return ifcopenshell.util.date.ifc2datetime(element.OwnerHistory.CreationDate).isoformat() |
| 199 | |
| 200 | |
| 201 | def get_owner_application(element: ifcopenshell.entity_instance) -> Union[str, None]: |
no outgoing calls
no test coverage detected