UNPKG

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

Version:

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

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