(self)
| 596 | return AllowAllPermissionSetResult(enabled, success) |
| 597 | |
| 598 | def to_dict(self) -> dict: |
| 599 | result: dict = {} |
| 600 | result["enabled"] = from_bool(self.enabled) |
| 601 | result["success"] = from_bool(self.success) |
| 602 | return result |
| 603 | |
| 604 | # Experimental: this type is part of an experimental API and may change or be removed. |
| 605 | @dataclass |
nothing calls this directly
no test coverage detected