Schema for the `PermissionDecisionUserNotAvailable` type.
| 13481 | # Experimental: this type is part of an experimental API and may change or be removed. |
| 13482 | @dataclass |
| 13483 | class 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 |
no outgoing calls
searching dependent graphs…