| 280 | |
| 281 | |
| 282 | class Response(BaseModelWithConfig): |
| 283 | description: str |
| 284 | headers: dict[str, Header | Reference] | None = None |
| 285 | content: dict[str, MediaType] | None = None |
| 286 | links: dict[str, Link | Reference] | None = None |
| 287 | |
| 288 | |
| 289 | class Operation(BaseModelWithConfig): |
no outgoing calls
searching dependent graphs…