(obj: Any)
| 590 | |
| 591 | @staticmethod |
| 592 | def from_dict(obj: Any) -> 'AllowAllPermissionSetResult': |
| 593 | assert isinstance(obj, dict) |
| 594 | enabled = from_bool(obj.get("enabled")) |
| 595 | success = from_bool(obj.get("success")) |
| 596 | return AllowAllPermissionSetResult(enabled, success) |
| 597 | |
| 598 | def to_dict(self) -> dict: |
| 599 | result: dict = {} |
nothing calls this directly
no test coverage detected