MBPSwitzerlandQrCodePaymentRecognizerResult

Objective-C


@interface MBPSwitzerlandQrCodePaymentRecognizerResult
    : MBPRecognizerResult <NSCopying>

Swift

class MBPSwitzerlandQrCodePaymentRecognizerResult : MBPRecognizerResult, NSCopying

Result of scanning of Swiss 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 name of the payer, if it exists.

    Declaration

    Objective-C

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

    Swift

    var payerName: String? { get }
  • The address of the payer, if it exists.

    Declaration

    Objective-C

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

    Swift

    var payerAddress: String? { get }
  • The street of the payer, if it exists.

    Declaration

    Objective-C

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

    Swift

    var payerStreet: String? { get }
  • The house number of the payer, if it exists.

    Declaration

    Objective-C

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

    Swift

    var payerHouseNumber: String? { get }
  • The postal code of the payer, if it exists.

    Declaration

    Objective-C

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

    Swift

    var payerPostalCode: String? { get }
  • The city of the payer, if it exists.

    Declaration

    Objective-C

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

    Swift

    var payerCity: String? { get }
  • The country of the payer, if it exists.

    Declaration

    Objective-C

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

    Swift

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

    Declaration

    Objective-C

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

    Swift

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

    Declaration

    Objective-C

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

    Swift

    var reference: String? { get }
  • The International bank account numbe of the account to which the payment goes.

    Declaration

    Objective-C

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

    Swift

    var iban: String? { get }
  • The name of the recipient.

    Declaration

    Objective-C

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

    Swift

    var recipientName: String? { get }
  • The address of the recipient.

    Declaration

    Objective-C

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

    Swift

    var recipientAddress: String? { get }
  • The street of the recipient.

    Declaration

    Objective-C

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

    Swift

    var recipientStreet: String? { get }
  • The house number of the recipient.

    Declaration

    Objective-C

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

    Swift

    var recipientHouseNumber: String? { get }
  • The postal code of the recipient.

    Declaration

    Objective-C

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

    Swift

    var recipientPostalCode: String? { get }
  • The city of the recipient.

    Declaration

    Objective-C

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

    Swift

    var recipientCity: String? { get }
  • The country of the recipient.

    Declaration

    Objective-C

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

    Swift

    var recipientCountry: String? { get }
  • The name of the ultimate recipient.

    Declaration

    Objective-C

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

    Swift

    var ultimateRecipientName: String? { get }
  • The address of the ultimate recipient.

    Declaration

    Objective-C

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

    Swift

    var ultimateRecipientAddress: String? { get }
  • The street of the ultimate recipient.

    Declaration

    Objective-C

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

    Swift

    var ultimateRecipientStreet: String? { get }
  • The house number of the ultimate recipient.

    Declaration

    Objective-C

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

    Swift

    var ultimateRecipientHouseNumber: String? { get }
  • The postal code of the ultimate recipient.

    Declaration

    Objective-C

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

    Swift

    var ultimateRecipientPostalCode: String? { get }
  • The city of the ultimate recipient.

    Declaration

    Objective-C

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

    Swift

    var ultimateRecipientCity: String? { get }
  • The country of the ultimate recipient.

    Declaration

    Objective-C

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

    Swift

    var ultimateRecipientCountry: String? { get }
  • The payment additional information.

    Declaration

    Objective-C

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

    Swift

    var additionalInformation: String? { get }
  • The parameters of the alternative scheme.

    Declaration

    Objective-C

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

    Swift

    var alternativeSchemeParameters: String? { get }
  • The due date of the payment.

    Declaration

    Objective-C

    @property (nonatomic, readonly, nullable) MBPDate *dueDate;

    Swift

    var dueDate: MBPDate? { get }