@nevis-security/nevis-mobile-authentication-sdk-react
Version:
React Native plugin for Nevis Mobile Authentication SDK. Supports only mobile.
37 lines (33 loc) • 808 B
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.PinEnrollMessage = void 0;
var _ChannelMessage = require("../ChannelMessage");
/**
* Copyright © 2023-2024 Nevis Security AG. All rights reserved.
*/
/**
* Holds the parameters of the PIN enrollment call.
*/
class PinEnrollMessage extends _ChannelMessage.ChannelMessage {
/**
* The identifier of the operation.
*/
/**
* The PIN.
*/
/**
* Default constructor for {@link PinEnrollMessage}.
*
* @param operationId the identifier of the operation.
* @param pin the PIN.
*/
constructor(operationId, pin) {
super();
this.operationId = operationId;
this.pin = Array.from(pin);
}
}
exports.PinEnrollMessage = PinEnrollMessage;
//# sourceMappingURL=PinEnrollMessage.js.map
;