SBSDKChequeRecognizerResult
@interface SBSDKChequeRecognizerResult : NSObject
Contains the result of a cheque recognition.
-
The routing number field. Empty if it was not found.
Declaration
Objective-C
@property (nonatomic, strong, readonly, nullable) NSString *routingNumber;
Swift
var routingNumber: String? { get }
-
The account number. Empty if it was not found.
Declaration
Objective-C
@property (nonatomic, strong, readonly, nullable) NSString *accountNumber;
Swift
var accountNumber: String? { get }
-
The cheque number. Empty if it was not found.
Declaration
Objective-C
@property (nonatomic, strong, readonly, nullable) NSString *chequeNumber;
Swift
var chequeNumber: String? { get }
-
The routing number field. Empty if it was not found.
Declaration
Objective-C
@property (nonatomic, strong, readonly, nullable) SBSDKChequeRecognizerResultField *routingNumberField;
Swift
var routingNumberField: SBSDKChequeRecognizerResultField? { get }
-
The account number field. Empty if it was not found.
Declaration
Objective-C
@property (nonatomic, strong, readonly, nullable) SBSDKChequeRecognizerResultField *accountNumberField;
Swift
var accountNumberField: SBSDKChequeRecognizerResultField? { get }
-
The cheque number. Empty if it was not found.
Declaration
Objective-C
@property (nonatomic, strong, readonly, nullable) SBSDKChequeRecognizerResultField *chequeNumberField;
Swift
var chequeNumberField: SBSDKChequeRecognizerResultField? { get }
-
The polygon of the cheque within the image.
Declaration
Objective-C
@property (nonatomic, copy, readonly, nullable) SBSDKPolygon *polygon;
Swift
@NSCopying var polygon: SBSDKPolygon? { get }