(obj: Any)
| 307 | |
| 308 | @staticmethod |
| 309 | def from_dict(obj: Any) -> 'AccountLoginRequest': |
| 310 | assert isinstance(obj, dict) |
| 311 | host = from_str(obj.get("host")) |
| 312 | login = from_str(obj.get("login")) |
| 313 | token = from_str(obj.get("token")) |
| 314 | return AccountLoginRequest(host, login, token) |
| 315 | |
| 316 | def to_dict(self) -> dict: |
| 317 | result: dict = {} |
nothing calls this directly
no test coverage detected