(self)
| 338 | return AccountLoginResult(stored_in_vault) |
| 339 | |
| 340 | def to_dict(self) -> dict: |
| 341 | result: dict = {} |
| 342 | result["storedInVault"] = from_bool(self.stored_in_vault) |
| 343 | return result |
| 344 | |
| 345 | # Experimental: this type is part of an experimental API and may change or be removed. |
| 346 | @dataclass |
nothing calls this directly
no test coverage detected