Reading constructor

Reading(
  1. dynamic authorizationToken,
  2. dynamic sessionId,
  3. dynamic userIdentifier,
  4. dynamic nonce,
  5. dynamic documentType,
  6. dynamic documentNumber,
  7. dynamic dateOfBirth,
  8. dynamic dateOfExpiry,
  9. dynamic mrz,
  10. dynamic isReturnDataForIncompleteSession,
  11. dynamic isSecuredWindowsDisabled,
  12. dynamic facialRecognitionSpecification,
  13. dynamic backgroundCheckConfiguration,
  14. dynamic isLookupEnabled,
  15. 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;
}