AWSTextractDocumentGroup
Objective-C
@interface AWSTextractDocumentGroup
Swift
class AWSTextractDocumentGroup
Summary information about documents grouped by the same document type.
-
A list of the detected signatures found in a document group.
Declaration
Objective-C
@property (nonatomic, strong) NSArray<AWSTextractDetectedSignature *> *_Nullable detectedSignatures;
Swift
var detectedSignatures: [AWSTextractDetectedSignature]? { get set }
-
An array that contains information about the pages of a document, defined by logical boundary.
Declaration
Objective-C
@property (nonatomic, strong) NSArray<AWSTextractSplitDocument *> *_Nullable splitDocuments;
Swift
var splitDocuments: [AWSTextractSplitDocument]? { get set }
-
The type of document that Amazon Textract has detected. See Analyze Lending Response Objects for a list of all types returned by Textract.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable types;
Swift
var types: String? { get set }
-
A list of any expected signatures not found in a document group.
Declaration
Objective-C
@property (nonatomic, strong) NSArray<AWSTextractUndetectedSignature *> *_Nullable undetectedSignatures;
Swift
var undetectedSignatures: [AWSTextractUndetectedSignature]? { get set }