chrome-devtools-kotlin / org.hildan.chrome.devtools.domains.security.events / SecurityEvent / SecurityStateChangedEvent

SecurityStateChangedEvent

data class SecurityStateChangedEvent : SecurityEvent

The security state of the page changed.

Official doc

Constructors

<init>

The security state of the page changed.

SecurityStateChangedEvent(securityState: SecurityState, schemeIsCryptographic: Boolean, explanations: List<SecurityStateExplanation>, insecureContentStatus: InsecureContentStatus, summary: String? = null)

Properties

explanations

List of explanations for the security state. If the overall security state is insecure or warning, at least one corresponding explanation should be included.

val explanations: List<SecurityStateExplanation>

insecureContentStatus

Information about insecure content on the page.

val insecureContentStatus: InsecureContentStatus

schemeIsCryptographic

True if the page was loaded over cryptographic transport such as HTTPS.

val schemeIsCryptographic: Boolean

securityState

Security state.

val securityState: SecurityState

summary

Overrides user-visible description of the state.

val summary: String?