chrome-devtools-kotlin / org.hildan.chrome.devtools.domains.security / SecurityStateExplanation

SecurityStateExplanation

data class SecurityStateExplanation

An explanation of an factor contributing to the security state.

Official doc

Constructors

<init>

An explanation of an factor contributing to the security state.

SecurityStateExplanation(securityState: SecurityState, title: String, summary: String, description: String, mixedContentType: MixedContentType, certificate: List<String>, recommendations: List<String>? = null)

Properties

certificate

Page certificate.

val certificate: List<String>

description

Full text explanation of the factor.

val description: String

mixedContentType

The type of mixed content described by the explanation.

val mixedContentType: MixedContentType

recommendations

Recommendations to fix any issues.

val recommendations: List<String>?

securityState

Security state representing the severity of the factor being explained.

val securityState: SecurityState

summary

Short phrase describing the type of factor.

val summary: String

title

Title describing the type of factor.

val title: String