MCPcopy Create free account
hub / github.com/github/copilot-sdk / PermissionDecisionUserNotAvailable

Class PermissionDecisionUserNotAvailable

python/copilot/generated/rpc.py:13483–13497  ·  view source on GitHub ↗

Schema for the `PermissionDecisionUserNotAvailable` type.

Source from the content-addressed store, hash-verified

13481# Experimental: this type is part of an experimental API and may change or be removed.
13482@dataclass
13483class PermissionDecisionUserNotAvailable:
13484 """Schema for the `PermissionDecisionUserNotAvailable` type."""
13485
13486 kind: ClassVar[str] = "user-not-available"
13487 """No user is available to confirm the request"""
13488
13489 @staticmethod
13490 def from_dict(obj: Any) -> 'PermissionDecisionUserNotAvailable':
13491 assert isinstance(obj, dict)
13492 return PermissionDecisionUserNotAvailable()
13493
13494 def to_dict(self) -> dict:
13495 result: dict = {}
13496 result["kind"] = self.kind
13497 return result
13498
13499# Experimental: this type is part of an experimental API and may change or be removed.
13500@dataclass

Calls

no outgoing calls

Used in the wild real call sites across dependent graphs

searching dependent graphs…