Class ScanResult
- java.lang.Object
-
- com.thegrizzlylabs.geniusscan.sdk.ui.ScanResult
-
- All Implemented Interfaces:
android.os.Parcelable
public class ScanResult extends java.lang.Object implements android.os.Parcelable
Result of the scan flow
-
-
Field Summary
Fields Modifier and Type Field Description static android.os.Parcelable.Creator<ScanResult>
CREATOR
java.util.List<? extends com.thegrizzlylabs.geniusscan.sdk.core.ScanContainer>
pages
List of pages that were scanned during the scan flow.java.io.File
pdfFile
PDF file that was generated during the scan flow.
-
Constructor Summary
Constructors Constructor Description ScanResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
describeContents()
void
writeToParcel(android.os.Parcel dest, int flags)
-
-
-
Field Detail
-
pdfFile
@Nullable public java.io.File pdfFile
PDF file that was generated during the scan flow. Can be null if no PDF file was generated.
-
pages
public java.util.List<? extends com.thegrizzlylabs.geniusscan.sdk.core.ScanContainer> pages
List of pages that were scanned during the scan flow.
-
CREATOR
public static final android.os.Parcelable.Creator<ScanResult> CREATOR
-
-