UNPKG

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

Version:

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

33 lines (28 loc) 700 B
"use strict"; /** * Copyright © 2024 Nevis Security AG. All rights reserved. */ import { ChannelMessage } from '../ChannelMessage'; /** * Holds the parameters of the password enrollment call. */ export class PasswordEnrollMessage extends 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); } } //# sourceMappingURL=PasswordEnrollMessage.js.map