(element: ifcopenshell.entity_instance)
| 995 | |
| 996 | |
| 997 | def get_created_on(element: ifcopenshell.entity_instance) -> str: |
| 998 | if getattr(element, "OwnerHistory", None): |
| 999 | return ifcopenshell.util.date.ifc2datetime(element.OwnerHistory.CreationDate).isoformat() |
| 1000 | return "1900-12-31T23:59:59" # Yes, really |
| 1001 | |
| 1002 | |
| 1003 | def get_external_system(element: ifcopenshell.entity_instance) -> Union[str, None]: |
no outgoing calls
no test coverage detected