SBSDKVehicleIdentificationNumberScannerResult
@interface SBSDKVehicleIdentificationNumberScannerResult : NSObject
A class describing the result of the vehicle identification number scanner.
-
YES, if the validation was successful. NO otherwise
Declaration
Objective-C
@property (nonatomic) BOOL validationSuccessful;
Swift
var validationSuccessful: Bool { get set }
-
The scanned Vehicle Identification Number string.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nonnull text;
Swift
var text: String { get set }
-
The scanned result confidence value.
Declaration
Objective-C
@property (nonatomic) double confidenceValue;
Swift
var confidenceValue: Double { get set }