Package io.scanbot.sdk.documentdata
Class InvalidDataVerificationReport
- java.lang.Object
-
- io.scanbot.sdk.documentdata.InvalidDataVerificationReport
-
public class InvalidDataVerificationReport extends java.lang.ObjectReport of the field validation verification.
-
-
Constructor Summary
Constructors Constructor Description InvalidDataVerificationReport(boolean overallIsInvalid, java.util.List<FieldInvalidDataVerificationReport> fieldDetails)Constructs InvalidDataVerificationReport with the given params.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<FieldInvalidDataVerificationReport>getFieldDetails()Getter for fieldDetails field.booleangetOverallIsInvalid()Getter for overallIsInvalid field.
-
-
-
Constructor Detail
-
InvalidDataVerificationReport
public InvalidDataVerificationReport(boolean overallIsInvalid, java.util.List<FieldInvalidDataVerificationReport> fieldDetails)Constructs InvalidDataVerificationReport with the given params.- Parameters:
overallIsInvalid- 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.fieldDetails- List of reports for each field that was verified.
-
-
Method Detail
-
getOverallIsInvalid
public boolean getOverallIsInvalid()
Getter for overallIsInvalid field. See constructor documentation for more information about the field.- Returns:
- overallIsInvalid
-
getFieldDetails
public java.util.List<FieldInvalidDataVerificationReport> getFieldDetails()
Getter for fieldDetails field. See constructor documentation for more information about the field.- Returns:
- fieldDetails
-
-