Package io.scanbot.sdk.documentdata
Class ConsistencyVerificationReport
- java.lang.Object
-
- io.scanbot.sdk.documentdata.ConsistencyVerificationReport
-
public class ConsistencyVerificationReport extends java.lang.ObjectReport of the document consistency verification. Shows whether information in the fields that correspond to the same logical field is consistent.
-
-
Constructor Summary
Constructors Constructor Description ConsistencyVerificationReport(ValueConsistency overallConsistency, java.util.List<FieldConsistencyVerificationReport> fieldDetails)Constructs ConsistencyVerificationReport with the given params.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<FieldConsistencyVerificationReport>getFieldDetails()Getter for fieldDetails field.ValueConsistencygetOverallConsistency()Getter for overallConsistency field.
-
-
-
Constructor Detail
-
ConsistencyVerificationReport
public ConsistencyVerificationReport(ValueConsistency overallConsistency, java.util.List<FieldConsistencyVerificationReport> fieldDetails)
Constructs ConsistencyVerificationReport with the given params.- Parameters:
overallConsistency- Overall status of the consistency verification. Corresponds to the most severe status of all fields.fieldDetails- List of reports for each field that was verified.
-
-
Method Detail
-
getOverallConsistency
public ValueConsistency getOverallConsistency()
Getter for overallConsistency field. See constructor documentation for more information about the field.- Returns:
- overallConsistency
-
getFieldDetails
public java.util.List<FieldConsistencyVerificationReport> getFieldDetails()
Getter for fieldDetails field. See constructor documentation for more information about the field.- Returns:
- fieldDetails
-
-