Nfc Result
Defined in package com.scandit.datacapture.id.nfc
- ChipVerificationStatus
Added in version 7.3.0
Represents the status of the NFC chip verification.
- SUCCEEDED
Added in version 7.3.0
The chip verification was successful.
- FAILED
Added in version 7.3.0
The chip verification failed.
- UNKNOWN
Added in version 7.3.0
The chip verification status is unknown.
- CloneDetectionStatus
Added in version 7.3.0
Represents the status of the clone detection check.
- SUCCEEDED
Added in version 7.3.0
The clone detection check passed successfully.
- FAILED
Added in version 7.3.0
The clone detection check failed.
- UNKNOWN
Added in version 7.3.0
The clone detection status is unknown.
- NfcResult
class NfcResult
Added in version 7.3.0
Represents the result of an NFC operation containing personal identification information.
- NfcResult()
NfcResult(@NonNull String firstName, @NonNull String lastName, @NonNull String fullName, @NonNull String documentNumber, @NonNull String documentAdditionalNumber, @NonNull String issuingCountryIso, @NonNull String issuingCountry, @NonNull String issuingAuthority, @NonNull DateResult dateOfIssue, @NonNull DateResult dateOfExpiry, @NonNull DateResult dateOfBirth, @NonNull Bitmap faceImage, @NonNull Bitmap signatureImage, ChipVerificationStatus chipVerificationStatus, CloneDetectionStatus cloneDetectionStatus)
Added in version 7.3.0
Constructs an instance of NfcResult with the specified parameters.
- firstName
@Nullable String getFirstName()
Added in version 7.3.0
The first name of the document holder.
- lastName
@Nullable String getLastName()
Added in version 7.3.0
The last name of the document holder.
- fullName
@Nullable String getFullName()
Added in version 7.3.0
The full name of the document holder.
- documentNumber
@Nullable String getDocumentNumber()
Added in version 7.3.0
The document number of the ID.
The additional number of the document.
- issuingCountryIso
@Nullable String getIssuingCountryIso()
Added in version 7.3.0
The ISO (Alpha-3 code) abbreviation of the issuing country of the document.
- issuingCountry
@Nullable String getIssuingCountry()
Added in version 7.3.0
Issuing country of the document.
- issuingAuthority
@Nullable String getIssuingAuthority()
Added in version 7.3.0
Issuing authority of the document.
- dateOfIssue
@Nullable DateResult getDateOfIssue()
Added in version 7.3.0
The date of issue of the document.
- dateOfExpiry
@Nullable DateResult getDateOfExpiry()
Added in version 7.3.0
The date of expiry of the document.
- dateOfBirth
@Nullable DateResult getDateOfBirth()
Added in version 7.3.0
The date of birth of the document holder.
- faceImage
@Nullable Bitmap getFaceImage()
Added in version 7.3.0
Returns the face image extracted from the NFC chip.
- signatureImage
@Nullable Bitmap getSignatureImage()
Added in version 7.3.0
Returns the signature image extracted from the NFC chip. Note that this image is not always available, as it depends on the document type and the data stored in the NFC chip.
- chipVerificationStatus
ChipVerificationStatus getChipVerificationStatus()
Added in version 7.3.0
Returns the status of the NFC chip verification.
- cloneDetectionStatus
CloneDetectionStatus getCloneDetectionStatus()
Added in version 7.3.0
Returns the status of the clone detection check.