@nevis-security/nevis-mobile-authentication-sdk-react
Version:
React Native plugin for Nevis Mobile Authentication SDK. Supports only mobile.
40 lines (34 loc) • 1.22 kB
JavaScript
;
/**
* Copyright © 2025 Nevis Security AG. All rights reserved.
*/
export 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;
}
}
//# sourceMappingURL=FidoUafAttestationInformationMessage.js.map