(self)
| 2156 | return HistoryTruncateResult(events_removed) |
| 2157 | |
| 2158 | def to_dict(self) -> dict: |
| 2159 | result: dict = {} |
| 2160 | result["eventsRemoved"] = from_int(self.events_removed) |
| 2161 | return result |
| 2162 | |
| 2163 | class HMACAuthInfoType(Enum): |
| 2164 | HMAC = "hmac" |
nothing calls this directly
no test coverage detected