(obj: Any)
| 1210 | |
| 1211 | @staticmethod |
| 1212 | def from_dict(obj: Any) -> '_ConnectRequest': |
| 1213 | assert isinstance(obj, dict) |
| 1214 | token = from_union([from_str, from_none], obj.get("token")) |
| 1215 | return _ConnectRequest(token) |
| 1216 | |
| 1217 | def to_dict(self) -> dict: |
| 1218 | result: dict = {} |
nothing calls this directly
no test coverage detected