UNPKG

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

Version:

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

44 lines (39 loc) 1.41 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.PendingOutOfBandOperationsMessage = void 0; var _HttpOperationMessage = require("./HttpOperationMessage"); /** * Copyright © 2024 Nevis Security AG. All rights reserved. */ /** * Holds the parameters of the pending out-of-band operations platform channel call. */ class PendingOutOfBandOperationsMessage extends _HttpOperationMessage.HttpOperationMessage { /** * The identifier of the operation. */ /** * Specifies the additional request headers that must be included in the HTTP requests sent by * the operation. */ /** * Flag that tells whether the result callback is provided. */ /** * Default constructor for {@link PendingOutOfBandOperationsMessage}. * * @param operationId the identifier of the operation. * @param requestHeaders the additional request headers that must be included in the HTTP requests sent by the operation. * @param onResultProvided the flag that tells whether the result callback is provided. */ constructor(operationId, onResultProvided, requestHeaders) { super(); this.operationId = operationId; this.onResultProvided = onResultProvided; this.requestHeaders = requestHeaders; } } exports.PendingOutOfBandOperationsMessage = PendingOutOfBandOperationsMessage; //# sourceMappingURL=PendingOutOfBandOperationsMessage.js.map