Enrollment constructor

Enrollment(
  1. dynamic documentList,
  2. dynamic authorizationToken,
  3. dynamic nonce,
  4. dynamic isRootedDeviceAllowed,
  5. dynamic isSecuredWindowsDisabled,
  6. dynamic facialRecognitionSpecification,
  7. dynamic backgroundCheckConfiguration,
  8. dynamic lookupConfiguration,
  9. dynamic sessionId,
  10. dynamic userIdentifier,
  11. dynamic isReturnDataForIncompleteSession,
  12. dynamic appearanceMode,
  13. dynamic allowNonPhysicalDocuments,
  14. dynamic disableTamperingRejection,
)

Implementation

Enrollment(
  documentList,
  authorizationToken,
  nonce,
  isRootedDeviceAllowed,
  isSecuredWindowsDisabled,
  facialRecognitionSpecification,
  backgroundCheckConfiguration,
  lookupConfiguration,
  sessionId,
  userIdentifier,
  isReturnDataForIncompleteSession,
  appearanceMode,
  allowNonPhysicalDocuments,
  disableTamperingRejection,
) {
  this.documentList = documentList;
  this.authorizationToken = authorizationToken;
  this.nonce = nonce;
  this.isRootedDeviceAllowed = isRootedDeviceAllowed;
  this.isSecuredWindowsDisabled = isSecuredWindowsDisabled;
  this.facialRecognitionSpecification = facialRecognitionSpecification;
  this.backgroundCheckConfiguration = backgroundCheckConfiguration;
  this.lookupConfiguration = lookupConfiguration;
  this.sessionId = sessionId;
  this.userIdentifier = userIdentifier;
  this.isReturnDataForIncompleteSession = isReturnDataForIncompleteSession;
  this.appearanceMode = appearanceMode;
  this.allowNonPhysicalDocuments = allowNonPhysicalDocuments;
  this.disableTamperingRejection = disableTamperingRejection;
}