UNPKG

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

Version:

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

33 lines (28 loc) 655 B
"use strict"; /** * Copyright © 2023-2024 Nevis Security AG. All rights reserved. */ import { ChannelMessage } from '../ChannelMessage'; /** * Holds the parameters of the PIN enrollment call. */ export class PinEnrollMessage extends ChannelMessage { /** * The identifier of the operation. */ /** * The PIN. */ /** * Default constructor for {@link PinEnrollMessage}. * * @param operationId the identifier of the operation. * @param pin the PIN. */ constructor(operationId, pin) { super(); this.operationId = operationId; this.pin = Array.from(pin); } } //# sourceMappingURL=PinEnrollMessage.js.map