| 276 | |
| 277 | |
| 278 | class FindResourceWithRawResponse: |
| 279 | def __init__(self, find: FindResource) -> None: |
| 280 | self._find = find |
| 281 | |
| 282 | self.files = to_raw_response_wrapper( |
| 283 | find.files, |
| 284 | ) |
| 285 | self.symbols = to_raw_response_wrapper( |
| 286 | find.symbols, |
| 287 | ) |
| 288 | self.text = to_raw_response_wrapper( |
| 289 | find.text, |
| 290 | ) |
| 291 | |
| 292 | |
| 293 | class AsyncFindResourceWithRawResponse: |