MRZData
MRZData
is a result class that contains the parsed MRZ information.
Definition
Assembly: DynamsoftMRZScanner.xcframework
- Objective-C
- Swift
@interface DSMRZData : NSObject
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
@property (nonatomic, readonly) NSString* firstName;
let firstName: String
lastName
The last name of the user of the MRZ document.
- Objective-C
- Swift
1.
@property (nonatomic, readonly) NSString* lastName;
let lastName: String
sex
The sex of the user of the MRZ document.
- Objective-C
- Swift
1.
@property (nonatomic, readonly) NSString* sex;
let sex: String
issuingState
The issuing state of the MRZ document.
- Objective-C
- Swift
1.
@property (nonatomic, readonly) NSString* issuingState;
let issuingState: String
nationality
The nationality of the user of the MRZ document.
- Objective-C
- Swift
1.
@property (nonatomic, readonly) NSString* nationality;
let nationality: String
dateOfBirth
The date of birth of the user of the MRZ document.
- Objective-C
- Swift
1.
@property (nonatomic, readonly) NSString* dateOfBirth;
let dateOfBirth: String
dateOfExpire
The expiry date of the MRZ document.
- Objective-C
- Swift
1.
@property (nonatomic, readonly) NSString* dateOfExpire;
let dateOfExpire: String
documentType
The type of MRZ document.
- Objective-C
- Swift
1.
@property (nonatomic, readonly) NSString* documentType;
let documentType: String
documentNumber
The MRZ document number.
- Objective-C
- Swift
1.
@property (nonatomic, readonly) NSString* documentNumber;
let documentNumber: String
age
The age of the user of the MRZ document.
- Objective-C
- Swift
@property (nonatomic, readonly) int age;
let age: Int
mrzText
The raw text of the MRZ.
- Objective-C
- Swift
1.
@property (nonatomic, readonly) NSString* mrzText;
let mrzText: String