(obj: Any)
| 6948 | |
| 6949 | @staticmethod |
| 6950 | def from_dict(obj: Any) -> 'SessionModelList': |
| 6951 | assert isinstance(obj, dict) |
| 6952 | list = from_list(lambda x: x, obj.get("list")) |
| 6953 | quota_snapshots = from_union([lambda x: from_dict(lambda x: x, x), from_none], obj.get("quotaSnapshots")) |
| 6954 | return SessionModelList(list, quota_snapshots) |
| 6955 | |
| 6956 | def to_dict(self) -> dict: |
| 6957 | result: dict = {} |
nothing calls this directly
no test coverage detected