MBBlinkCardRecognizer

Recognizer used for scanning the front side of credit/debit cards.

  • Undocumented

    Declaration

    Objective-C

    MB_INIT

    Swift

    init()
  • Result of scanning Payment Card Front Recognizer

    Declaration

    Objective-C

    @property (readonly, strong, nonatomic)
        MBBlinkCardRecognizerResult *_Nonnull result;

    Swift

    var result: MBBlinkCardRecognizerResult { get }
  • Should extract the card owner information

    Default: NO

    Declaration

    Objective-C

    @property (assign, readwrite, nonatomic) BOOL extractOwner;

    Swift

    var extractOwner: Bool { get set }
  • Should extract the payment card’s month of expiry

    Default: YES

    Declaration

    Objective-C

    @property (assign, readwrite, nonatomic) BOOL extractValidThru;

    Swift

    var extractValidThru: Bool { get set }
  • Should extract CVV

    Default: YES

    Declaration

    Objective-C

    @property (assign, readwrite, nonatomic) BOOL extractCvv;

    Swift

    var extractCvv: Bool { get set }
  • Should extract the card’s inventory number

    Default: YES

    Declaration

    Objective-C

    @property (assign, readwrite, nonatomic) BOOL extractInventoryNumber;

    Swift

    var extractInventoryNumber: Bool { get set }
  • Should anonymize the card number area (redact image pixels) on the document image result

    Default: NO

    Declaration

    Objective-C

    @property (assign, readwrite, nonatomic) BOOL anonymizeCardNumber;

    Swift

    var anonymizeCardNumber: Bool { get set }
  • Should anonymize the owner area (redact image pixels) on the document image result

    Default: NO

    Declaration

    Objective-C

    @property (assign, readwrite, nonatomic) BOOL anonymizeOwner;

    Swift

    var anonymizeOwner: Bool { get set }
  • Should anonymize the CVV on the document image result

    Default: NO

    Declaration

    Objective-C

    @property (assign, readwrite, nonatomic) BOOL anonymizeCvv;

    Swift

    var anonymizeCvv: Bool { get set }