Request.response Returns the matching `Response` object, or `null` if the response was not received due to error. Returns ------- Union[Response, None]
(self)
| 361 | return mapping.from_impl(self._sync(self._impl_obj.sizes())) |
| 362 | |
| 363 | def response(self) -> typing.Optional["Response"]: |
| 364 | """Request.response |
| 365 | |
| 366 | Returns the matching `Response` object, or `null` if the response was not received due to error. |
| 367 | |
| 368 | Returns |
| 369 | ------- |
| 370 | Union[Response, None] |
| 371 | """ |
| 372 | |
| 373 | return mapping.from_impl_nullable(self._sync(self._impl_obj.response())) |
| 374 | |
| 375 | def is_navigation_request(self) -> bool: |
| 376 | """Request.is_navigation_request |
nothing calls this directly
no test coverage detected