MRZData
MRZData is a result class that is used to represent the parsed MRZ information.
Definition
Assembly: dynamsoft_mrz_scanner_bundle_flutter
class MRZData
Properties
| Property | Type | Description |
|---|---|---|
firstName |
String | The first name of the MRZ document holder. |
lastName |
String | The last name of the MRZ document holder. |
sex |
String | The sex of the MRZ document holder. |
issuingState |
String | The issuing state (represented as the full name of the country/region) of the MRZ document. |
nationality |
String | The nationality (represented as the full name of the country/region) of the MRZ document holder. |
dateOfBirth |
String | The date of birth of the MRZ document holder. |
dateOfExpire |
String | The expiry date of the MRZ document. |
documentType |
String | The type of MRTD that the MRZ document is. |
documentNumber |
String | The MRZ document number. |
age |
int | The age of the MRZ document holder. |
mrzText |
String | The raw unparsed text of the MRZ. |
firstName
Represents the first name of the MRZ document holder.
String firstName;
lastName
Represents the last name of the MRZ document holder.
String lastName;
sex
Represents the sex of the MRZ document holder.
String sex;
issuingState
Represents the issuing state of the MRZ document.
String issuingState;
nationality
Represents the nationality of the MRZ document holder.
String nationality;
dateOfBirth
Represents the date of birth of the MRZ document holder.
String dateOfBirth;
dateOfExpire
Represents the expiry date of the MRZ document.
String dateOfExpire;
documentType
Represents the type of MRZ document.
String documentType;
documentNumber
Represents the MRZ document number.
String documentNumber;
age
Represents the age of the MRZ document holder.
int age;
mrzText
Represents the raw text of the MRZ.
String mrzText;