FaceSessionConfiguration constructor
FaceSessionConfiguration(
- dynamic token,
- dynamic sessionId,
- dynamic nonce,
- dynamic userIdentifier,
- dynamic isRootedDeviceAllowed,
- dynamic isSecuredWindowsDisabled,
- dynamic minimumMatchLevel,
- dynamic maxAttempts,
- dynamic isReturnDataForIncompleteSession,
- dynamic appearanceMode,
- dynamic allowClosedEyes,
- dynamic obfuscationType,
- dynamic enableActiveLiveness,
- dynamic disableLivenessGesture,
Implementation
FaceSessionConfiguration(
token,
sessionId,
nonce,
userIdentifier,
isRootedDeviceAllowed,
isSecuredWindowsDisabled,
minimumMatchLevel,
maxAttempts,
isReturnDataForIncompleteSession,
appearanceMode,
allowClosedEyes,
obfuscationType,
enableActiveLiveness,
disableLivenessGesture) {
this.token = token;
this.sessionId = sessionId;
this.nonce = nonce;
this.userIdentifier = userIdentifier;
this.isRootedDeviceAllowed = isRootedDeviceAllowed;
this.isSecuredWindowsDisabled = isSecuredWindowsDisabled;
this.minimumMatchLevel = minimumMatchLevel;
this.maxAttempts = maxAttempts;
this.isReturnDataForIncompleteSession = isReturnDataForIncompleteSession;
this.appearanceMode = appearanceMode;
this.allowClosedEyes = allowClosedEyes;
this.obfuscationType = obfuscationType;
this.enableActiveLiveness = enableActiveLiveness;
this.disableLivenessGesture = disableLivenessGesture;
}