MCPcopy Index your code
hub / github.com/github/copilot-sdk / AccountLogoutResult

Class AccountLogoutResult

python/copilot/generated/rpc.py:366–381  ·  view source on GitHub ↗

Logout result indicating if more users remain

Source from the content-addressed store, hash-verified

364# Experimental: this type is part of an experimental API and may change or be removed.
365@dataclass
366class 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.
384class AdaptiveThinkingSupport(Enum):

Callers 1

from_dictMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…