(obj: Any)
| 2822 | |
| 2823 | @staticmethod |
| 2824 | def from_dict(obj: Any) -> 'MCPAppsListToolsResult': |
| 2825 | assert isinstance(obj, dict) |
| 2826 | tools = from_list(lambda x: from_dict(lambda x: x, x), obj.get("tools")) |
| 2827 | return MCPAppsListToolsResult(tools) |
| 2828 | |
| 2829 | def to_dict(self) -> dict: |
| 2830 | result: dict = {} |
nothing calls this directly
no test coverage detected