AWSTextractPageClassification
Objective-C
@interface AWSTextractPageClassification
Swift
class AWSTextractPageClassification
The class assigned to a Page object detected in an input document. Contains information regarding the predicted type/class of a document’s page and the page number that the Page object was detected on.
Required parameters: [PageType, PageNumber]
-
The page number the value was detected on, relative to Amazon Textract’s starting position.
Declaration
Objective-C
@property (nonatomic, strong) NSArray<AWSTextractPrediction *> *_Nullable pageNumber;
Swift
var pageNumber: [AWSTextractPrediction]? { get set }
-
The class, or document type, assigned to a detected Page object. The class, or document type, assigned to a detected Page object.
Declaration
Objective-C
@property (nonatomic, strong) NSArray<AWSTextractPrediction *> *_Nullable pageType;
Swift
var pageType: [AWSTextractPrediction]? { get set }