MBPUnitedKingdomQrCodePaymentRecognizerResult

Objective-C


@interface MBPUnitedKingdomQrCodePaymentRecognizerResult
    : MBPRecognizerResult <NSCopying>

Swift

class MBPUnitedKingdomQrCodePaymentRecognizerResult : MBPRecognizerResult, NSCopying

Result of scanning of UK payement QR codes

  • 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 account number.

    Declaration

    Objective-C

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

    Swift

    var accountNumber: String? { get }
  • The name of the payee.

    Declaration

    Objective-C

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

    Swift

    var recipientName: String? { get }
  • The payment reference number.

    Declaration

    Objective-C

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

    Swift

    var reference: String? { get }
  • The slip sorting code

    Declaration

    Objective-C

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

    Swift

    var sortingCode: String? { get }