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