SBSDKCheckRecognizerResult
@interface SBSDKCheckRecognizerResult : NSObject
The result object of a check recognition.
-
The status of the check recognition result.
Declaration
Objective-C
@property (nonatomic) SBSDKCheckRecognitionResultStatus status;
Swift
var status: SBSDKCheckRecognitionResultStatus { get set }
-
The generic document for the found check. Nil, if the recognition was not successfull.
Declaration
Objective-C
@property (nonatomic, strong, nullable) SBSDKGenericDocument *document;
Swift
var document: SBSDKGenericDocument? { get set }
-
The image the check was recognized on.
Declaration
Objective-C
@property (nonatomic, strong, nullable) UIImage *checkImage;
Swift
var checkImage: UIImage? { get set }
-
A string representation of the receiver.
Declaration
Objective-C
@property (nonatomic, readonly) NSString *_Nonnull stringRepresentation;
Swift
var stringRepresentation: String { get }