InvalidDataVerificationReport

data class InvalidDataVerificationReport(val overallIsInvalid: Boolean, val fieldDetails: List<FieldInvalidDataVerificationReport>) : Parcelable

Report of the field validation verification.

Constructors

Link copied to clipboard
constructor(source: Map<String, Any?>)
constructor(json: JSONObject)
constructor(overallIsInvalid: Boolean, fieldDetails: List<FieldInvalidDataVerificationReport>)

Properties

Link copied to clipboard

List of reports for each field that was verified.

Link copied to clipboard

Overall status of the document verification. Corresponds to the most severe status of all fields, i.e. if at least one field is invalid, the overall status is invalid.

Functions

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