Class ImageQualityGroup
- java.lang.Object
-
- com.regula.documentreader.api.results.ImageQualityGroup
-
public class ImageQualityGroup extends java.lang.Object
Structure, containing overall data about quality checks performed
-
-
Field Summary
Fields Modifier and Type Field Description int
count
total number of quality checks performedjava.util.List<ImageQuality>
imageQualityList
list of all quality checks performedint
pageIndex
int
result
overall result of all checks for page one ofeCheckResult
values indicating result of the check
-
Constructor Summary
Constructors Constructor Description ImageQualityGroup()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ImageQualityGroup
fromJson(java.lang.String json)
static ImageQualityGroup
fromJson(JSONObject object)
java.lang.String
toJson()
Method convert object to string in json format
-
-
-
Field Detail
-
count
public int count
total number of quality checks performed
-
result
public int result
overall result of all checks for page one ofeCheckResult
values indicating result of the check
-
imageQualityList
public java.util.List<ImageQuality> imageQualityList
list of all quality checks performed
-
pageIndex
public int pageIndex
-
-
Method Detail
-
fromJson
public static ImageQualityGroup fromJson(java.lang.String json)
-
fromJson
public static ImageQualityGroup fromJson(JSONObject object)
-
toJson
public java.lang.String toJson()
Method convert object to string in json format- Returns:
- string in json format
-
-