MRZData
MRZData is a result class that is used to represent the parsed MRZ information.
Definition
Assembly: dynamsoft-capture-vision-react-native
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 |
number | 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.
firstName?: string
lastName
Represents the last name of the MRZ document holder.
lastName?: string
sex
Represents the sex of the MRZ document holder.
sex?: string
issuingState
Represents the issuing state of the MRZ document.
issuingState?: string
nationality
Represents the nationality of the MRZ document holder.
nationality?: string
dateOfBirth
Represents the date of birth of the MRZ document holder.
dateOfBirth?: string
dateOfExpire
Represents the expiry date of the MRZ document.
dateOfExpire?: string
documentType
Represents the type of MRZ document.
documentType?: string
documentNumber
Represents the MRZ document number.
documentNumber?: string
age
Represents the age of the MRZ document holder.
age?: number
mrzText
Represents the raw text of the MRZ.
mrzText?: string