(self)
| 616 | return AllowAllPermissionState(enabled) |
| 617 | |
| 618 | def to_dict(self) -> dict: |
| 619 | result: dict = {} |
| 620 | result["enabled"] = from_bool(self.enabled) |
| 621 | return result |
| 622 | |
| 623 | class APIKeyAuthInfoType(Enum): |
| 624 | API_KEY = "api-key" |
nothing calls this directly
no test coverage detected