MBPSepaQrCodePaymentRecognizerResult

Objective-C


@interface MBPSepaQrCodePaymentRecognizerResult
    : MBPRecognizerResult <NSCopying>

Swift

class MBPSepaQrCodePaymentRecognizerResult : MBPRecognizerResult, NSCopying

Result of scanning of SEPA QR Code

  • 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 currency of the payment.

    Declaration

    Objective-C

    @property (nonatomic, readonly, nullable) NSString *currency;

    Swift

    var currency: 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 }
  • bic

    The bank Identifier Code of the bank to which the payment goes.

    Declaration

    Objective-C

    @property (nonatomic, readonly, nullable) NSString *bic;

    Swift

    var bic: String? { get }
  • The reference of the payment.

    Declaration

    Objective-C

    @property (nonatomic, readonly, nullable) NSString *reference;

    Swift

    var reference: String? { get }
  • The name of the receiving side.

    Declaration

    Objective-C

    @property (nonatomic, readonly, nullable) NSString *recipientName;

    Swift

    var recipientName: String? { get }
  • The description of the payment; available if reference number is empty.

    Declaration

    Objective-C

    @property (nonatomic, readonly, nullable) NSString *paymentDescription;

    Swift

    var paymentDescription: String? { get }
  • The purpose code of the payment.

    Declaration

    Objective-C

    @property (nonatomic, readonly, nullable) NSString *purposeCode;

    Swift

    var purposeCode: String? { get }
  • Optional data from the end of QR code (if exists).

    Declaration

    Objective-C

    @property (nonatomic, readonly, nullable) NSString *optionalData;

    Swift

    var optionalData: String? { get }
  • Raw result

    Declaration

    Objective-C

    @property (nonatomic, readonly, nullable) NSString *rawResult;

    Swift

    var rawResult: String? { get }