| 25 | |
| 26 | |
| 27 | class Calendar(TypedDict): |
| 28 | Name: str |
| 29 | Type: str |
| 30 | HoursPerDay: int |
| 31 | StandardWorkWeek: list[WorkSlot] |
| 32 | HolidayOrExceptions: NotRequired[ExceptionsDict] |
| 33 | ifc: NotRequired[ifcopenshell.entity_instance] |
| 34 | |
| 35 | |
| 36 | class Activity(TypedDict): |