Response.all_headers An object with all the response HTTP headers associated with this response. Returns ------- Dict[str, str]
(self)
| 538 | return mapping.from_impl(self._impl_obj.frame) |
| 539 | |
| 540 | def all_headers(self) -> typing.Dict[str, str]: |
| 541 | """Response.all_headers |
| 542 | |
| 543 | An object with all the response HTTP headers associated with this response. |
| 544 | |
| 545 | Returns |
| 546 | ------- |
| 547 | Dict[str, str] |
| 548 | """ |
| 549 | |
| 550 | return mapping.from_maybe_impl(self._sync(self._impl_obj.all_headers())) |
| 551 | |
| 552 | def headers_array(self) -> typing.List[NameValue]: |
| 553 | """Response.headers_array |
nothing calls this directly
no test coverage detected