MBPCzechiaSlipRecognizerResult

Objective-C


@interface MBPCzechiaSlipRecognizerResult
    : MBPRecognizerResult <MBPPhotopayRecognizerResult>

Swift

class MBPCzechiaSlipRecognizerResult : MBPRecognizerResult, MBPPhotopayRecognizerResult

Result of scanning of Czech 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 account number

    Declaration

    Objective-C

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

    Swift

    var accountNumber: String { get }
  • String representing account prefix. Account prefix is not mandatory on payslips.

    Declaration

    Objective-C

    @property (nonatomic, readonly, nonnull) NSString *accountPrefix;

    Swift

    var accountPrefix: String { get }
  • Bank code

    Declaration

    Objective-C

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

    Swift

    var bankCode: String { get }
  • Variable code of payment order

    Declaration

    Objective-C

    @property (nonatomic, readonly, nonnull) NSString *variableSymbol;

    Swift

    var variableSymbol: String { get }
  • Specific code of payment order

    Declaration

    Objective-C

    @property (nonatomic, readonly, nonnull) NSString *specificSymbol;

    Swift

    var specificSymbol: String { get }
  • Constant code of payment order

    Declaration

    Objective-C

    @property (nonatomic, readonly, nonnull) NSString *constantSymbol;

    Swift

    var constantSymbol: String { get }