(self)
| 515 | return AgentSelectRequest(name) |
| 516 | |
| 517 | def to_dict(self) -> dict: |
| 518 | result: dict = {} |
| 519 | result["name"] = from_str(self.name) |
| 520 | return result |
| 521 | |
| 522 | # Experimental: this type is part of an experimental API and may change or be removed. |
| 523 | @dataclass |
nothing calls this directly
no test coverage detected