SBSDKPayFormRecognizedField
@interface SBSDKPayFormRecognizedField : NSObject
Resulting element of the SBSDKPayFormScanners recognizer. Holds a token and its recognized text value after recognition.
-
The receivers token.
Declaration
Objective-C
@property (nonatomic, strong, readonly, nonnull) SBSDKPayFormToken *token;
Swift
var token: SBSDKPayFormToken { get }
-
The recognized text for the receivers token.
Declaration
Objective-C
@property (nonatomic, copy, readonly, nullable) NSString *value;
Swift
var value: String? { get }
-
A debug-string like textual representation of the receiver. *
Declaration
Objective-C
@property (nonatomic, copy, readonly, nullable) NSString *stringValue;
Swift
var stringValue: String? { get }