FaceSessionConfiguration constructor

FaceSessionConfiguration(
  1. dynamic token,
  2. dynamic sessionId,
  3. dynamic nonce,
  4. dynamic isRootedDeviceAllowed,
  5. dynamic isSecuredWindowsDisabled,
  6. dynamic minimumMatchLevel,
  7. dynamic maxAttempts,
  8. dynamic isReturnDataForIncompleteSession,
  9. dynamic appearanceMode,
  10. dynamic allowClosedEyes,
)

Implementation

FaceSessionConfiguration(
    token,
    sessionId,
    nonce,
    isRootedDeviceAllowed,
    isSecuredWindowsDisabled,
    minimumMatchLevel,
    maxAttempts,
    isReturnDataForIncompleteSession,appearanceMode,allowClosedEyes) {

  this.token = token;
  this. sessionId = sessionId;
  this.nonce = nonce;
  this.isRootedDeviceAllowed = isRootedDeviceAllowed;
  this.isSecuredWindowsDisabled = isSecuredWindowsDisabled;
  this.minimumMatchLevel = minimumMatchLevel;
  this.maxAttempts = maxAttempts;
  this.isReturnDataForIncompleteSession = isReturnDataForIncompleteSession;
  this.appearanceMode = appearanceMode;
  this.allowClosedEyes = allowClosedEyes;

}