(self)
| 2827 | return MCPAppsListToolsResult(tools) |
| 2828 | |
| 2829 | def to_dict(self) -> dict: |
| 2830 | result: dict = {} |
| 2831 | result["tools"] = from_list(lambda x: from_dict(lambda x: x, x), self.tools) |
| 2832 | return result |
| 2833 | |
| 2834 | # Experimental: this type is part of an experimental API and may change or be removed. |
| 2835 | @dataclass |