FaceSessionConfiguration constructor

FaceSessionConfiguration(
  1. dynamic token,
  2. dynamic sessionId,
  3. dynamic nonce,
  4. dynamic userIdentifier,
  5. dynamic isRootedDeviceAllowed,
  6. dynamic isSecuredWindowsDisabled,
  7. dynamic minimumMatchLevel,
  8. dynamic maxAttempts,
  9. dynamic isReturnDataForIncompleteSession,
  10. dynamic appearanceMode,
  11. dynamic allowClosedEyes,
  12. dynamic obfuscationType,
  13. dynamic enableActiveLiveness,
  14. 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;
}