@nevis-security/nevis-mobile-authentication-sdk-react
Version:
React Native plugin for Nevis Mobile Authentication SDK. Supports only mobile.
49 lines (43 loc) • 1.31 kB
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.InitClientMessage = void 0;
var _OperationMessage = require("./OperationMessage");
/**
* Copyright © 2023 Nevis Security AG. All rights reserved.
*/
/**
* Holds the parameters of the client initialization operation call.
*/
class InitClientMessage extends _OperationMessage.OperationMessage {
/**
* The identifier of the operation.
*/
/**
* Flag that tells whether the success callback is provided.
*/
/**
* Flag that tells whether the error callback is provided.
*/
/**
* The sdk configuration.
*/
/**
* Creates a new instance.
*
* @param operationId the identifier of the operation.
* @param onSuccessProvided flag that tells whether the success callback is provided.
* @param onErrorProvided flag that tells whether the error callback is provided.
* @param configuration the sdk configuration.
*/
constructor(operationId, onSuccessProvided, onErrorProvided, configuration) {
super();
this.operationId = operationId;
this.onSuccessProvided = onSuccessProvided;
this.onErrorProvided = onErrorProvided;
this.configuration = configuration;
}
}
exports.InitClientMessage = InitClientMessage;
//# sourceMappingURL=InitClientMessage.js.map
;