@nevis-security/nevis-mobile-authentication-sdk-react
Version:
React Native plugin for Nevis Mobile Authentication SDK. Supports only mobile.
33 lines (28 loc) • 764 B
JavaScript
/**
* Copyright © 2024 Nevis Security AG. All rights reserved.
*/
import { ChannelMessage } from '../ChannelMessage';
/**
* Holds the parameters of the password verification call.
*/
export class PasswordVerificationMessage extends 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);
}
}
//# sourceMappingURL=PasswordVerificationMessage.js.map
;