@nevis-security/nevis-mobile-authentication-sdk-react
Version:
React Native plugin for Nevis Mobile Authentication SDK. Supports only mobile.
45 lines (39 loc) • 1.42 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.FidoUafAttestationInformationMessage = void 0;
/**
* Copyright © 2025 Nevis Security AG. All rights reserved.
*/
class FidoUafAttestationInformationMessage {
/**
* The identifier of the operation.
*/
/**
* Flag that tells whether Certificate Revocation List (CRL) checking should be disabled.
*/
/**
* Flag that tells whether the success callback is provided.
*/
/**
* Flag that tells whether the error callback is provided.
*/
/**
* Default constructor for {@link FidoUafAttestationInformationMessage}.
*
* @param operationId the identifier of the operation.
* provided.
* @param disableCrlCheck flag that tells whether Certificate Revocation List (CRL) checking should be disabled.
* @param onSuccessProvided flag that tells whether the success callback is provided.
* @param onErrorProvided flag that tells whether the error callback is provided.
*/
constructor(operationId, disableCrlCheck, onSuccessProvided, onErrorProvided) {
this.operationId = operationId;
this.disableCrlCheck = disableCrlCheck;
this.onSuccessProvided = onSuccessProvided;
this.onErrorProvided = onErrorProvided;
}
}
exports.FidoUafAttestationInformationMessage = FidoUafAttestationInformationMessage;
//# sourceMappingURL=FidoUafAttestationInformationMessage.js.map