TieredCheck

@Serializable
@SerialName(value = "TieredCheck")
data class TieredCheck(val name: String?, val result: CheckResult?, val performedChecks: Int?, val details: DetailDictionary?, val checks: List<VerifyCheck>?, val matchLevel: MatchLevel) : VerifyCheck

Tiered check instance of the check, extends VerifyCheck.

Constructors

Link copied to clipboard
constructor(name: String?, result: CheckResult?, performedChecks: Int?, details: DetailDictionary?, checks: List<VerifyCheck>?, matchLevel: MatchLevel)

Properties

Link copied to clipboard
open override val checks: List<VerifyCheck>?

Array of children checks that contributes to the overall result of this check.

Link copied to clipboard
open override val details: DetailDictionary?

Additional information about the check. Structured as a key value pairs.

Link copied to clipboard

Indicates satisfied MatchLevel of the check.

Link copied to clipboard
open override val name: String?

Name of the check.

Link copied to clipboard
open override val performedChecks: Int?

Number of performed children checks.

Link copied to clipboard
open override val result: CheckResult?

Information about the check result.