UNPKG

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

Version:

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

39 lines (33 loc) 903 B
"use strict"; /** * Copyright © 2023-2024 Nevis Security AG. All rights reserved. */ import { ChannelMessage } from '../ChannelMessage'; /** * Holds the parameters of the PIN validation call. */ export class PinValidatedMessage extends ChannelMessage { /** * The identifier of the operation. */ /** * The optional validation error message. */ /** * The optional cause of the validation error. */ /** * Default constructor for {@link PinValidatedMessage}. * * @param operationId the identifier of the operation. * @param errorMessage the optional validation error message. * @param cause the optional cause of the validation error. */ constructor(operationId, errorMessage, cause) { super(); this.operationId = operationId; this.errorMessage = errorMessage; this.cause = cause; } } //# sourceMappingURL=PinValidatedMessage.js.map