AWSTextractLendingResult
Objective-C
@interface AWSTextractLendingResult
Swift
class AWSTextractLendingResult
Contains the detections for each page analyzed through the Analyze Lending API.
-
An array of Extraction to hold structured data. e.g. normalized key value pairs instead of raw OCR detections .
Declaration
Objective-C
@property (nonatomic, strong) NSArray<AWSTextractExtraction *> *_Nullable extractions;
Swift
var extractions: [AWSTextractExtraction]? { get set }
-
The page number for a page, with regard to whole submission.
Declaration
Objective-C
@property (nonatomic, strong) NSNumber *_Nullable page;
Swift
var page: NSNumber? { get set }
-
The classifier result for a given page.
Declaration
Objective-C
@property (nonatomic, strong) AWSTextractPageClassification *_Nullable pageClassification;
Swift
var pageClassification: AWSTextractPageClassification? { get set }