(
self,
status: int = None,
headers: Dict[str, str] = None,
body: Union[str, bytes] = None,
json: Any = None,
path: Union[str, Path] = None,
contentType: str = None,
response: "APIResponse" = None,
)
| 379 | ) |
| 380 | |
| 381 | async def fulfill( |
| 382 | self, |
| 383 | status: int = None, |
| 384 | headers: Dict[str, str] = None, |
| 385 | body: Union[str, bytes] = None, |
| 386 | json: Any = None, |
| 387 | path: Union[str, Path] = None, |
| 388 | contentType: str = None, |
| 389 | response: "APIResponse" = None, |
| 390 | ) -> None: |
| 391 | await self._handle_route( |
| 392 | lambda: self._inner_fulfill( |
| 393 | status, headers, body, json, path, contentType, response |
| 394 | ) |
| 395 | ) |
| 396 | |
| 397 | async def _inner_fulfill( |
| 398 | self, |