@nevis-security/nevis-mobile-authentication-sdk-react
Version:
React Native plugin for Nevis Mobile Authentication SDK. Supports only mobile.
27 lines (23 loc) • 550 B
JavaScript
/**
* Copyright © 2023 Nevis Security AG. All rights reserved.
*/
import { ChannelMessage } from '../ChannelMessage';
/**
* Holds the parameters of an operation identifier based call.
*/
export class OperationIdMessage extends ChannelMessage {
/**
* The identifier of the operation.
*/
/**
* Creates a new instance.
*
* @param operationId the identifier of the operation.
*/
constructor(operationId) {
super();
this.operationId = operationId;
}
}
//# sourceMappingURL=OperationIdMessage.js.map
;