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,
)

Implementation

Enrollment(
    documentList,
    authorizationToken,
    nonce,
    isRootedDeviceAllowed,
    isSecuredWindowsDisabled,
    facialRecognitionSpecification,
    backgroundCheckConfiguration,
    lookupConfiguration,
    sessionId,
    userIdentifier,
    isReturnDataForIncompleteSession,
    appearanceMode) {
  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;
}