(obj: Any)
| 178 | |
| 179 | @staticmethod |
| 180 | def from_dict(obj: Any) -> 'AccountAllUsers': |
| 181 | assert isinstance(obj, dict) |
| 182 | auth_info = _load_AuthInfo(obj.get("authInfo")) |
| 183 | token = from_union([from_str, from_none], obj.get("token")) |
| 184 | return AccountAllUsers(auth_info, token) |
| 185 | |
| 186 | def to_dict(self) -> dict: |
| 187 | result: dict = {} |
nothing calls this directly
no test coverage detected