ConsistencyVerificationReport

data class ConsistencyVerificationReport(val overallConsistency: ValueConsistency, val fieldDetails: List<FieldConsistencyVerificationReport>) : Parcelable

Report of the document consistency verification. Shows whether information in the fields that correspond to the same logical field is consistent.

Constructors

Link copied to clipboard
constructor(source: Map<String, Any?>)
constructor(json: JSONObject)
constructor(overallConsistency: ValueConsistency, fieldDetails: List<FieldConsistencyVerificationReport>)

Properties

Link copied to clipboard

List of reports for each field that was verified.

Link copied to clipboard

Overall status of the consistency verification. Corresponds to the most severe status of all fields.

Functions

Link copied to clipboard
Link copied to clipboard
fun toJson(config: ToJsonConfiguration = ToJsonConfiguration.default()): JSONObject