Check

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

Base check instance for document verification, extends VerifyCheck.

Constructors

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

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
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.