Table of contents

MRZData

MRZData is a result class that contains the parsed MRZ information.

Definition

Assembly: DynamsoftMRZScanner.xcframework

  • Objective-C
  • Swift
  1. @interface DSMRZData : NSObject
    
  2. class MRZData : NSObject
    

Properties

Property Type Description
firstName String The first name of the user of the MRZ document.
lastName String The last name of the user of the MRZ document.
sex String The sex of the user of the MRZ document.
issuingState String The issuing state of the MRZ document.
nationality String The nationality of the user of the MRZ document.
dateOfBirth String The date of birth of the user of the MRZ document.
dateOfExpire String The expiry date of the MRZ document.
documentType String The type of MRZ document.
documentNumber String The MRZ document number.
age Int The age of the user of the MRZ document.
mrzText String The raw text of the MRZ.

firstName

The first name of the user of the MRZ document.

  • Objective-C
  • Swift
  1. @property (nonatomic, readonly) NSString* firstName;
    
  2. let firstName: String
    

lastName

The last name of the user of the MRZ document.

  • Objective-C
  • Swift

1.

@property (nonatomic, readonly) NSString* lastName;
  1. let lastName: String
    

sex

The sex of the user of the MRZ document.

  • Objective-C
  • Swift

1.

@property (nonatomic, readonly) NSString* sex;
  1. let sex: String
    

issuingState

The issuing state of the MRZ document.

  • Objective-C
  • Swift

1.

@property (nonatomic, readonly) NSString* issuingState;
  1. let issuingState: String
    

nationality

The nationality of the user of the MRZ document.

  • Objective-C
  • Swift

1.

@property (nonatomic, readonly) NSString* nationality;
  1. let nationality: String
    

dateOfBirth

The date of birth of the user of the MRZ document.

  • Objective-C
  • Swift

1.

@property (nonatomic, readonly) NSString* dateOfBirth;
  1. let dateOfBirth: String
    

dateOfExpire

The expiry date of the MRZ document.

  • Objective-C
  • Swift

1.

@property (nonatomic, readonly) NSString* dateOfExpire;
  1. let dateOfExpire: String
    

documentType

The type of MRZ document.

  • Objective-C
  • Swift

1.

@property (nonatomic, readonly) NSString* documentType;
  1. let documentType: String
    

documentNumber

The MRZ document number.

  • Objective-C
  • Swift

1.

@property (nonatomic, readonly) NSString* documentNumber;
  1. let documentNumber: String
    

age

The age of the user of the MRZ document.

  • Objective-C
  • Swift
  1. @property (nonatomic, readonly) int age;
    
  2. let age: Int
    

mrzText

The raw text of the MRZ.

  • Objective-C
  • Swift

1.

@property (nonatomic, readonly) NSString* mrzText;
  1. let mrzText: String