AWSTextractAnalyzeIDDetections

Objective-C

@interface AWSTextractAnalyzeIDDetections

Swift

class AWSTextractAnalyzeIDDetections

Used to contain the information detected by an AnalyzeID operation.

Required parameters: [Text]

  • The confidence score of the detected text.

    Declaration

    Objective-C

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

    Swift

    var confidence: NSNumber? { get set }
  • Only returned for dates, returns the type of value detected and the date written in a more machine readable way.

    Declaration

    Objective-C

    @property (nonatomic, strong) AWSTextractNormalizedValue *_Nullable normalizedValue;

    Swift

    var normalizedValue: AWSTextractNormalizedValue? { get set }
  • Text of either the normalized field or value associated with it.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable text;

    Swift

    var text: String? { get set }