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