@nevis-security/nevis-mobile-authentication-sdk-react
Version:
React Native plugin for Nevis Mobile Authentication SDK. Supports only mobile.
56 lines (45 loc) • 1.41 kB
text/typescript
/**
* Copyright © 2023-2024 Nevis Security AG. All rights reserved.
*/
import { OperationMessage } from './OperationMessage';
/**
* Common ancestor for user interaction operation based messages.
*/
export abstract class UserInteractionOperationMessage extends OperationMessage {
/**
* Flag that tells whether the account selector is provided.
*/
abstract accountSelectorProvided: boolean;
/**
* Flag that tells whether the authenticator selector is provided.
*/
abstract authenticatorSelectorProvided: boolean;
/**
* Flag that tells whether the PIN enroller is provided.
*/
abstract pinEnrollerProvided: boolean;
/**
* Flag that tells whether the password enroller is provided.
*/
abstract passwordEnrollerProvided: boolean;
/**
* Flag that tells whether the PIN user verifier is provided.
*/
abstract pinUserVerifierProvided: boolean;
/**
* Flag that tells whether the password user verifier is provided.
*/
abstract passwordUserVerifierProvided: boolean;
/**
* Flag that tells whether the biometric user verifier is provided.
*/
abstract biometricUserVerifierProvided: boolean;
/**
* Flag that tells whether the device passcode user verifier is provided.
*/
abstract devicePasscodeUserVerifierProvided: boolean;
/**
* Flag that tells whether the fingerprint user verifier is provided.
*/
abstract fingerprintUserVerifierProvided: boolean;
}