MBPHungarySlipRecognizerResult

Objective-C


@interface MBPHungarySlipRecognizerResult
    : MBPRecognizerResult <MBPPhotopayRecognizerResult>

Swift

class MBPHungarySlipRecognizerResult : MBPRecognizerResult, MBPPhotopayRecognizerResult

Result of scanning of Hungarian payment slips

  • String representing the currency for payment. In ISO 4217 standard.

    Declaration

    Objective-C

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

    Swift

    var currency: String? { get }
  • String representing valid bank code value of the receiver bank (e.g. 0034000).

    Declaration

    Objective-C

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

    Swift

    var bankCode: String? { get }
  • String representing valid bank account number to which the payment goes

    Declaration

    Objective-C

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

    Swift

    var accountNumber: String? { get }
  • ID which payer can use to identify payment

    Declaration

    Objective-C

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

    Swift

    var payerId: String? { get }
  • recipientName - name of the receiving side

    Declaration

    Objective-C

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

    Swift

    var recipientName: String? { get }
  • String representing valid bank code value of the payer’s bank (e.g. 0034000).

    Declaration

    Objective-C

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

    Swift

    var payerBankCode: String? { get }
  • String representing valid bank account number of the payer

    Declaration

    Objective-C

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

    Swift

    var payerAccountNumber: String? { get }
  • Id of the payslip (Yellow, White)

    Declaration

    Objective-C

    @property (nonatomic, readonly) MBPHungarySlipId slipId;

    Swift

    var slipId: MBPHungarySlipId { get }