Response.security_details Returns SSL and other security information. Returns ------- Union[{issuer: Union[str, None], protocol: Union[str, None], subjectName: Union[str, None], validFrom: Union[float, None], validTo: Union[float, None]}, None]
(self)
| 616 | return mapping.from_impl_nullable(self._sync(self._impl_obj.server_addr())) |
| 617 | |
| 618 | def security_details(self) -> typing.Optional[SecurityDetails]: |
| 619 | """Response.security_details |
| 620 | |
| 621 | Returns SSL and other security information. |
| 622 | |
| 623 | Returns |
| 624 | ------- |
| 625 | Union[{issuer: Union[str, None], protocol: Union[str, None], subjectName: Union[str, None], validFrom: Union[float, None], validTo: Union[float, None]}, None] |
| 626 | """ |
| 627 | |
| 628 | return mapping.from_impl_nullable(self._sync(self._impl_obj.security_details())) |
| 629 | |
| 630 | def http_version(self) -> str: |
| 631 | """Response.http_version |
no test coverage detected