@nevis-security/nevis-mobile-authentication-sdk-react
Version:
React Native plugin for Nevis Mobile Authentication SDK. Supports only mobile.
39 lines (33 loc) • 783 B
JavaScript
/**
* Copyright © 2023-2024 Nevis Security AG. All rights reserved.
*/
import { ChannelMessage } from '../ChannelMessage';
/**
* Holds the parameters of the PIN change call.
*/
export class PinsChangeMessage extends ChannelMessage {
/**
* The identifier of the operation.
*/
/**
* The old PIN.
*/
/**
* The new PIN.
*/
/**
* Default constructor for {@link PinsChangeMessage}.
*
* @param operationId the identifier of the operation.
* @param oldPin the old PIN.
* @param newPin the new PIN.
*/
constructor(operationId, oldPin, newPin) {
super();
this.operationId = operationId;
this.oldPin = Array.from(oldPin);
this.newPin = Array.from(newPin);
}
}
//# sourceMappingURL=PinsChangeMessage.js.map
;