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