VerifyDetailedStringResult

@Serializable
@SerialName(value = "DetailedStringResult")
data class VerifyDetailedStringResult(val field: String?, val details: DetailDictionary?, val results: List<VerifyResult>?, val value: String, val location: LocationInfo?, val script: VerifyScript, val side: Side) : VerifyResult

Detailed string instance of the result, extends VerifyResult.

Constructors

Link copied to clipboard
constructor(field: String?, details: DetailDictionary?, results: List<VerifyResult>?, value: String, location: LocationInfo?, script: VerifyScript, side: Side)

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

Exact location of the result on the document.

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

Script used for the result field on the document.

Link copied to clipboard
val side: Side

Location of the result - front side or back side of the document.

Link copied to clipboard

String value of the result.