(obj: Any)
| 352 | |
| 353 | @staticmethod |
| 354 | def from_dict(obj: Any) -> 'AccountLogoutRequest': |
| 355 | assert isinstance(obj, dict) |
| 356 | auth_info = _load_AuthInfo(obj.get("authInfo")) |
| 357 | return AccountLogoutRequest(auth_info) |
| 358 | |
| 359 | def to_dict(self) -> dict: |
| 360 | result: dict = {} |
nothing calls this directly
no test coverage detected