@opcua/for-node-red
Version:
The Node-RED node to communicate via OPC UA, powered NodeOPCUA and developed by Sterfive's team
19 lines (18 loc) • 974 B
TypeScript
import type { ExtensionObject } from "node-opcua-extension-object";
import type { DTActionTarget } from "./dt_action_target";
import type { DTDataSetMeta } from "./dt_data_set_meta";
import type { DTPublishedDataSetSource } from "./dt_published_data_set_source";
/**
* | | |
* |-----------|------------------------------------------------------------|
* | namespace |http://opcfoundation.org/UA/ |
* | nodeClass |DataType |
* | name |PublishedActionDataType |
* | isAbstract|false |
*/
export interface DTPublishedAction extends DTPublishedDataSetSource {
requestDataSetMetaData: DTDataSetMeta;
actionTargets: DTActionTarget[];
}
export interface UDTPublishedAction extends ExtensionObject, DTPublishedAction {
}