Package com.geniusscansdk.scanflow
Class ScanResult
- java.lang.Object
-
- com.geniusscansdk.scanflow.ScanResult
-
- All Implemented Interfaces:
java.io.Serializable
public class ScanResult extends java.lang.Object implements java.io.Serializable
Result of the scan flow- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
ScanResult.OcrResult
static class
ScanResult.Scan
A single page that was scanned during the scan flow.
-
Field Summary
Fields Modifier and Type Field Description java.io.File
multiPageDocument
Document containing the pages that were scanned during the scan flow.java.io.File
pdfFile
Deprecated.Replaced bymultiPageDocument
java.util.List<ScanResult.Scan>
scans
List of pages that were scanned during the scan flow.
-
Constructor Summary
Constructors Constructor Description ScanResult()
-
-
-
Field Detail
-
multiPageDocument
@Nullable public java.io.File multiPageDocument
Document containing the pages that were scanned during the scan flow. The format is specified by {ScanConfiguration.multiPageFormat
. Can be null if no format was specified or if generation failed.
-
pdfFile
@Deprecated @Nullable public java.io.File pdfFile
Deprecated.Replaced bymultiPageDocument
-
scans
public java.util.List<ScanResult.Scan> scans
List of pages that were scanned during the scan flow.
-
-