Package io.scanbot.sdk.check.entity
Class CheckRecognizerResult
-
- All Implemented Interfaces:
-
android.os.Parcelable
public final class CheckRecognizerResult implements Parcelable
Defines a result of the Check recognition flow.
-
-
Field Summary
Fields Modifier and Type Field Description private Bitmap
croppedImage
private final CheckRecognizerStatus
status
private final GenericDocument
check
-
Constructor Summary
Constructors Constructor Description CheckRecognizerResult(CheckRecognizerStatus status, GenericDocument check, Bitmap croppedImage)
CheckRecognizerResult(CheckRecognizerStatus status, GenericDocument check)
-
Method Summary
Modifier and Type Method Description final Bitmap
getCroppedImage()
Internal field, do not use. final Unit
setCroppedImage(Bitmap croppedImage)
Internal field, do not use. final CheckRecognizerStatus
getStatus()
Represents the status of the Check recognition final GenericDocument
getCheck()
Represents recognized Check data -
-
Constructor Detail
-
CheckRecognizerResult
CheckRecognizerResult(CheckRecognizerStatus status, GenericDocument check, Bitmap croppedImage)
-
CheckRecognizerResult
CheckRecognizerResult(CheckRecognizerStatus status, GenericDocument check)
-
-
Method Detail
-
getCroppedImage
final Bitmap getCroppedImage()
Internal field, do not use.
-
setCroppedImage
final Unit setCroppedImage(Bitmap croppedImage)
Internal field, do not use.
-
getStatus
final CheckRecognizerStatus getStatus()
Represents the status of the Check recognition
-
getCheck
final GenericDocument getCheck()
Represents recognized Check data
-
-
-
-