Logout result indicating if more users remain
| 364 | # Experimental: this type is part of an experimental API and may change or be removed. |
| 365 | @dataclass |
| 366 | class AccountLogoutResult: |
| 367 | """Logout result indicating if more users remain""" |
| 368 | |
| 369 | has_more_users: bool |
| 370 | """Whether other authenticated users remain after logout""" |
| 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 = {} |
| 380 | result["hasMoreUsers"] = from_bool(self.has_more_users) |
| 381 | return result |
| 382 | |
| 383 | # Experimental: this type is part of an experimental API and may change or be removed. |
| 384 | class AdaptiveThinkingSupport(Enum): |
no outgoing calls
no test coverage detected
searching dependent graphs…