NetverifyMrzData


@interface NetverifyMrzData : NSObject

Result object that is returned in case of a successful scan within NetverifyDocumentData that holds more detailed information about the MRZ document.

  • MRZ line 1 (max. length 50)

    Declaration

    Objective-C

    @property (nonatomic, strong, readwrite) NSString *line1;

    Swift

    var line1: String! { get set }
  • MRZ line 2 (max. length 50)

    Declaration

    Objective-C

    @property (nonatomic, strong, readwrite) NSString *line2;

    Swift

    var line2: String! { get set }
  • MRZ line 3 (max. length 50)

    Declaration

    Objective-C

    @property (nonatomic, strong, readwrite) NSString *line3;

    Swift

    var line3: String! { get set }
  • Format of the MRZ Document

    Declaration

    Objective-C

    @property (nonatomic, assign, unsafe_unretained, readwrite)
        NetverifyMRZFormat format;

    Swift

    var format: NetverifyMRZFormat { get set }
  • Method to retrieve information if ID number check digit is valid

    Declaration

    Objective-C

    - (BOOL)idNumberValid;

    Swift

    func idNumberValid() -> Bool

    Return Value

    True if valid, otherwise false

  • Method to retrieve information if date of birth check digit is valid

    Declaration

    Objective-C

    - (BOOL)dobValid;

    Swift

    func dobValid() -> Bool

    Return Value

    True if valid, otherwise false

  • Method to retrieve information if expiry date check digit is valid

    Declaration

    Objective-C

    - (BOOL)expiryDateValid;

    Swift

    func expiryDateValid() -> Bool

    Return Value

    True if valid, otherwise false

  • Method to retrieve information if personal number check digit is valid

    Declaration

    Objective-C

    - (BOOL)personalNumberValid;

    Swift

    func personalNumberValid() -> Bool

    Return Value

    True if valid, otherwise false

  • Method to retrieve information if compositer check digit is valid

    Declaration

    Objective-C

    - (BOOL)compositeValid;

    Swift

    func compositeValid() -> Bool

    Return Value

    True if valid, otherwise false