AWSTextractExpenseField
Objective-C
@interface AWSTextractExpenseField
Swift
class AWSTextractExpenseField
Breakdown of detected information, seperated into the catagories Type, LabelDetection, and ValueDetection
-
Shows the kind of currency, both the code and confidence associated with any monatary value detected.
Declaration
Objective-C
@property (nonatomic, strong) AWSTextractExpenseCurrency *_Nullable currency;
Swift
var currency: AWSTextractExpenseCurrency? { get set }
-
Shows which group a response object belongs to, such as whether an address line belongs to the vendor’s address or the recipent’s address.
Declaration
Objective-C
@property (nonatomic, strong) NSArray<AWSTextractExpenseGroupProperty *> *_Nullable groupProperties;
Swift
var groupProperties: [AWSTextractExpenseGroupProperty]? { get set }
-
The explicitly stated label of a detected element.
Declaration
Objective-C
@property (nonatomic, strong) AWSTextractExpenseDetection *_Nullable labelDetection;
Swift
var labelDetection: AWSTextractExpenseDetection? { get set }
-
The page number the value was detected on.
Declaration
Objective-C
@property (nonatomic, strong) NSNumber *_Nullable pageNumber;
Swift
var pageNumber: NSNumber? { get set }
-
The implied label of a detected element. Present alongside LabelDetection for explicit elements.
Declaration
Objective-C
@property (nonatomic, strong) AWSTextractExpenseType *_Nullable types;
Swift
var types: AWSTextractExpenseType? { get set }
-
The value of a detected element. Present in explicit and implicit elements.
Declaration
Objective-C
@property (nonatomic, strong) AWSTextractExpenseDetection *_Nullable valueDetection;
Swift
var valueDetection: AWSTextractExpenseDetection? { get set }