(obj: Any)
| 333 | |
| 334 | @staticmethod |
| 335 | def from_dict(obj: Any) -> 'AccountLoginResult': |
| 336 | assert isinstance(obj, dict) |
| 337 | stored_in_vault = from_bool(obj.get("storedInVault")) |
| 338 | return AccountLoginResult(stored_in_vault) |
| 339 | |
| 340 | def to_dict(self) -> dict: |
| 341 | result: dict = {} |
nothing calls this directly
no test coverage detected