Reading constructor
Reading(
- dynamic authorizationToken,
- dynamic sessionId,
- dynamic userIdentifier,
- dynamic nonce,
- dynamic documentType,
- dynamic documentNumber,
- dynamic dateOfBirth,
- dynamic dateOfExpiry,
- dynamic mrz,
- dynamic isReturnDataForIncompleteSession,
- dynamic isSecuredWindowsDisabled,
- dynamic facialRecognitionSpecification,
- dynamic backgroundCheckConfiguration,
- dynamic isLookupEnabled,
- dynamic appearanceMode,
Implementation
Reading(
authorizationToken,
sessionId,
userIdentifier,
nonce,
documentType,
documentNumber,
dateOfBirth,
dateOfExpiry,
mrz,
isReturnDataForIncompleteSession,
isSecuredWindowsDisabled,
facialRecognitionSpecification,
backgroundCheckConfiguration,
isLookupEnabled,
appearanceMode) {
this.authorizationToken = authorizationToken;
this.sessionId = sessionId;
this.userIdentifier = userIdentifier;
this.nonce = nonce;
this.documentType = documentType;
this.documentNumber = documentNumber;
this.dateOfBirth = dateOfBirth;
this.dateOfExpiry = dateOfExpiry;
this.mrz = mrz;
this.isReturnDataForIncompleteSession = isReturnDataForIncompleteSession;
this.isSecuredWindowsDisabled = isSecuredWindowsDisabled;
this.facialRecognitionSpecification = facialRecognitionSpecification;
this.backgroundCheckConfiguration = backgroundCheckConfiguration;
this.isLookupEnabled = isLookupEnabled;
this.appearanceMode = appearanceMode;
}