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,
- dynamic allowNonPhysicalDocuments,
- 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;
}