MBPSlovakiaCode128PaymentRecognizerResult
Objective-C
@interface MBPSlovakiaCode128PaymentRecognizerResult
: MBPRecognizerResult <NSCopying>
Swift
class MBPSlovakiaCode128PaymentRecognizerResult : MBPRecognizerResult, NSCopying
Result of scanning of Slovakian Code 128
-
The scanned amount in smallest currency (e.g. cents), 0 if nothing was scanned
0 if no value is specified
Declaration
Objective-C
@property (nonatomic, readonly) NSInteger amount;
Swift
var amount: Int { get }
-
The product code
Declaration
Objective-C
@property (nonatomic, readonly, nullable) NSString *productCode;
Swift
var productCode: String? { get }
-
The service code
Declaration
Objective-C
@property (nonatomic, readonly, nullable) NSString *serviceCode;
Swift
var serviceCode: String? { get }
-
The operational code
Declaration
Objective-C
@property (nonatomic, readonly, nullable) NSString *operationalCode;
Swift
var operationalCode: String? { get }
-
The international bank account number of the account to which the payment goes
Declaration
Objective-C
@property (nonatomic, readonly, nullable) NSString *iban;
Swift
var iban: String? { get }
-
The variable symbol
Declaration
Objective-C
@property (nonatomic, readonly, nullable) NSString *variableSymbol;
Swift
var variableSymbol: String? { get }
-
The constant symbol
Declaration
Objective-C
@property (nonatomic, readonly, nullable) NSString *constantSymbol;
Swift
var constantSymbol: String? { get }
-
The specific symbol
Declaration
Objective-C
@property (nonatomic, readonly, nullable) NSString *specificSymbol;
Swift
var specificSymbol: String? { get }
-
The reference of the payment
Declaration
Objective-C
@property (nonatomic, readonly, nullable) NSString *reference;
Swift
var reference: String? { get }
-
The bank code
Declaration
Objective-C
@property (nonatomic, readonly, nullable) NSString *bankCode;
Swift
var bankCode: String? { get }
-
The account number
Declaration
Objective-C
@property (nonatomic, readonly, nullable) NSString *accountNumber;
Swift
var accountNumber: String? { get }
-
The currency of the payment.
Declaration
Objective-C
@property (nonatomic, readonly, nullable) NSString *currency;
Swift
var currency: String? { get }
-
Raw result
Declaration
Objective-C
@property (nonatomic, readonly, nullable) NSString *rawResult;
Swift
var rawResult: String? { get }