AWSTextractIdentityDocument

Objective-C

@interface AWSTextractIdentityDocument

Swift

class AWSTextractIdentityDocument

The structure that lists each document processed in an AnalyzeID operation.

  • Individual word recognition, as returned by document detection.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSArray<AWSTextractBlock *> *_Nullable blocks;

    Swift

    var blocks: [AWSTextractBlock]? { get set }
  • Denotes the placement of a document in the IdentityDocument list. The first document is marked 1, the second 2 and so on.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable documentIndex;

    Swift

    var documentIndex: NSNumber? { get set }
  • The structure used to record information extracted from identity documents. Contains both normalized field and value of the extracted text.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSArray<AWSTextractIdentityDocumentField *> *_Nullable identityDocumentFields;

    Swift

    var identityDocumentFields: [AWSTextractIdentityDocumentField]? { get set }