(obj: Any)
| 2151 | |
| 2152 | @staticmethod |
| 2153 | def from_dict(obj: Any) -> 'HistoryTruncateResult': |
| 2154 | assert isinstance(obj, dict) |
| 2155 | events_removed = from_int(obj.get("eventsRemoved")) |
| 2156 | return HistoryTruncateResult(events_removed) |
| 2157 | |
| 2158 | def to_dict(self) -> dict: |
| 2159 | result: dict = {} |
nothing calls this directly
no test coverage detected