(obj: Any)
| 611 | |
| 612 | @staticmethod |
| 613 | def from_dict(obj: Any) -> 'AllowAllPermissionState': |
| 614 | assert isinstance(obj, dict) |
| 615 | enabled = from_bool(obj.get("enabled")) |
| 616 | return AllowAllPermissionState(enabled) |
| 617 | |
| 618 | def to_dict(self) -> dict: |
| 619 | result: dict = {} |
nothing calls this directly
no test coverage detected