(self)
| 6864 | return SessionList(sessions) |
| 6865 | |
| 6866 | def to_dict(self) -> dict: |
| 6867 | result: dict = {} |
| 6868 | result["sessions"] = from_list(lambda x: (x).to_dict(), self.sessions) |
| 6869 | return result |
| 6870 | |
| 6871 | # Experimental: this type is part of an experimental API and may change or be removed. |
| 6872 | @dataclass |