VerifyStringResult

@Serializable
@SerialName(value = "StringResult")
data class VerifyStringResult(val field: String?, val details: DetailDictionary?, val results: List<VerifyResult>?, val value: String) : VerifyResult

String instance of the result, extends VerifyResult.

Constructors

Link copied to clipboard
constructor(field: String?, details: DetailDictionary?, results: List<VerifyResult>?, value: String)

Properties

Link copied to clipboard
open override val details: DetailDictionary?

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

Link copied to clipboard
open override val field: String?

Name of the field.

Link copied to clipboard
open override val results: List<VerifyResult>?

Array of children results that contributes to the overall result of this result.

Link copied to clipboard

String value of the result.