(data: dict)
| 918 | |
| 919 | @staticmethod |
| 920 | def from_dict(data: dict) -> SessionLifecycleEventMetadata: |
| 921 | return SessionLifecycleEventMetadata( |
| 922 | start_time=_parse_session_timestamp(data.get("startTime", "")), |
| 923 | modified_time=_parse_session_timestamp(data.get("modifiedTime", "")), |
| 924 | summary=data.get("summary"), |
| 925 | ) |
| 926 | |
| 927 | |
| 928 | @dataclass |
nothing calls this directly
no test coverage detected