(obj: Any)
| 11391 | |
| 11392 | @staticmethod |
| 11393 | def from_dict(obj: Any) -> 'MCPAppsDiagnoseResult': |
| 11394 | assert isinstance(obj, dict) |
| 11395 | capability = MCPAppsDiagnoseCapability.from_dict(obj.get("capability")) |
| 11396 | server = MCPAppsDiagnoseServer.from_dict(obj.get("server")) |
| 11397 | return MCPAppsDiagnoseResult(capability, server) |
| 11398 | |
| 11399 | def to_dict(self) -> dict: |
| 11400 | result: dict = {} |
nothing calls this directly
no test coverage detected