(obj: Any)
| 203 | |
| 204 | @staticmethod |
| 205 | def from_dict(obj: Any) -> 'AccountGetCurrentAuthResult': |
| 206 | assert isinstance(obj, dict) |
| 207 | auth_errors = from_union([lambda x: from_list(from_str, x), from_none], obj.get("authErrors")) |
| 208 | auth_info = from_union([_load_AuthInfo, from_none], obj.get("authInfo")) |
| 209 | return AccountGetCurrentAuthResult(auth_errors, auth_info) |
| 210 | |
| 211 | def to_dict(self) -> dict: |
| 212 | result: dict = {} |
nothing calls this directly
no test coverage detected