| 34 | |
| 35 | |
| 36 | class Activity(TypedDict): |
| 37 | Name: str |
| 38 | Identification: int |
| 39 | StartDate: datetime |
| 40 | FinishDate: datetime |
| 41 | PlannedDuration: float |
| 42 | Status: str |
| 43 | CalendarObjectId: str |
| 44 | ifc: Union[ifcopenshell.entity_instance, None] |
| 45 | |
| 46 | |
| 47 | class WBSEntry(TypedDict): |