(obj: Any)
| 6407 | |
| 6408 | @staticmethod |
| 6409 | def from_dict(obj: Any) -> 'SessionBulkDeleteResult': |
| 6410 | assert isinstance(obj, dict) |
| 6411 | freed_bytes = from_dict(from_int, obj.get("freedBytes")) |
| 6412 | return SessionBulkDeleteResult(freed_bytes) |
| 6413 | |
| 6414 | def to_dict(self) -> dict: |
| 6415 | result: dict = {} |
nothing calls this directly
no test coverage detected