(obj: Any)
| 371 | |
| 372 | @staticmethod |
| 373 | def from_dict(obj: Any) -> 'AccountLogoutResult': |
| 374 | assert isinstance(obj, dict) |
| 375 | has_more_users = from_bool(obj.get("hasMoreUsers")) |
| 376 | return AccountLogoutResult(has_more_users) |
| 377 | |
| 378 | def to_dict(self) -> dict: |
| 379 | result: dict = {} |
nothing calls this directly
no test coverage detected