Result when user accepts the elicitation.
| 18 | |
| 19 | |
| 20 | class AcceptedElicitation(BaseModel, Generic[ElicitSchemaModelT]): |
| 21 | """Result when user accepts the elicitation.""" |
| 22 | |
| 23 | action: Literal["accept"] = "accept" |
| 24 | data: ElicitSchemaModelT |
| 25 | |
| 26 | |
| 27 | class DeclinedElicitation(BaseModel): |
no outgoing calls
no test coverage detected