@nevis-security/nevis-mobile-authentication-sdk-react
Version:
React Native plugin for Nevis Mobile Authentication SDK. Supports only mobile.
43 lines (38 loc) • 1.09 kB
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.PasswordValidatedMessage = void 0;
var _ChannelMessage = require("../ChannelMessage");
/**
* Copyright © 2024 Nevis Security AG. All rights reserved.
*/
/**
* Holds the parameters of the password validation call.
*/
class PasswordValidatedMessage extends _ChannelMessage.ChannelMessage {
/**
* The identifier of the operation.
*/
/**
* The optional validation error message.
*/
/**
* The optional cause of the validation error.
*/
/**
* Default constructor for {@link PasswordValidatedMessage}.
*
* @param operationId the identifier of the operation.
* @param errorMessage the optional validation error message.
* @param cause the optional cause of the validation error.
*/
constructor(operationId, errorMessage, cause) {
super();
this.operationId = operationId;
this.errorMessage = errorMessage;
this.cause = cause;
}
}
exports.PasswordValidatedMessage = PasswordValidatedMessage;
//# sourceMappingURL=PasswordValidatedMessage.js.map
;