GSKScanFlowResult
Objective-C
@interface GSKScanFlowResult : NSObject
Swift
class GSKScanFlowResult : NSObject
The result of a scan flow
-
Deprecated
Use multiPageDocumentURL instead
The PDF generated at the end of the scan flow
Declaration
Objective-C
@property (nonatomic, strong) DEPRECATED_MSG_ATTRIBUTE("Use multiPageDocumentURL instead") NSURL *pdfURL;Swift
var pdfURL: URL { get set } -
Document containing the pages that were scanned during the scan flow. The format is specified by
multiPageFormatproperty of the usedGSKScanFlowConfiguration. Is null if no format was specified or if generation failed.Declaration
Objective-C
@property (nonatomic, strong, nullable) NSURL *multiPageDocumentURL;Swift
var multiPageDocumentURL: URL? { get set } -
The individual scans taken during the scan flow.
Each scan object contains both the original and the enhanced scans.
Declaration
Objective-C
@property (nonatomic, strong) NSArray<GSKScanFlowScan *> *_Nonnull scans;Swift
var scans: [GSKScanFlowScan] { get set }
GSKScanFlowResult Class Reference