(obj: Any)
| 85 | |
| 86 | @staticmethod |
| 87 | def from_dict(obj: Any) -> 'AbortRequest': |
| 88 | assert isinstance(obj, dict) |
| 89 | reason = from_union([AbortReason, from_none], obj.get("reason")) |
| 90 | return AbortRequest(reason) |
| 91 | |
| 92 | def to_dict(self) -> dict: |
| 93 | result: dict = {} |
nothing calls this directly
no test coverage detected