(self)
| 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): |
nothing calls this directly
no test coverage detected