UNPKG

@nevis-security/nevis-mobile-authentication-sdk-react

Version:

React Native plugin for Nevis Mobile Authentication SDK. Supports only mobile.

37 lines (33 loc) 868 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.PasswordEnrollMessage = void 0; var _ChannelMessage = require("../ChannelMessage"); /** * Copyright © 2024 Nevis Security AG. All rights reserved. */ /** * Holds the parameters of the password enrollment call. */ class PasswordEnrollMessage extends _ChannelMessage.ChannelMessage { /** * The identifier of the operation. */ /** * The password. */ /** * Default constructor for {@link PasswordEnrollMessage}. * * @param operationId the identifier of the operation. * @param password the password. */ constructor(operationId, password) { super(); this.operationId = operationId; this.password = Array.from(password); } } exports.PasswordEnrollMessage = PasswordEnrollMessage; //# sourceMappingURL=PasswordEnrollMessage.js.map