@nevis-security/nevis-mobile-authentication-sdk-react
Version:
React Native plugin for Nevis Mobile Authentication SDK. Supports only mobile.
39 lines (34 loc) • 1.14 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 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 onSuccessProvided flag that tells whether the success callback is provided.
* @param onErrorProvided flag that tells whether the error callback is provided.
*/
constructor(operationId, onSuccessProvided, onErrorProvided) {
this.operationId = operationId;
this.onSuccessProvided = onSuccessProvided;
this.onErrorProvided = onErrorProvided;
}
}
exports.FidoUafAttestationInformationMessage = FidoUafAttestationInformationMessage;
//# sourceMappingURL=FidoUafAttestationInformationMessage.js.map