@opcua/for-node-red
Version:
The Node-RED node to communicate via OPC UA, powered NodeOPCUA and developed by Sterfive's team
27 lines (26 loc) • 1.17 kB
TypeScript
import type { UAString, UInt16 } from "node-opcua-basic-types";
import type { ExtensionObject } from "node-opcua-extension-object";
import type { DTEndpoint } from "./dt_endpoint";
import type { DTKeyValuePair } from "./dt_key_value_pair";
/**
* | | |
* |-----------|------------------------------------------------------------|
* | namespace |http://opcfoundation.org/UA/ |
* | nodeClass |DataType |
* | name |ServerEndpointDataType |
* | isAbstract|false |
*/
export interface DTServerEndpoint extends DTEndpoint {
name: UAString;
recordProperties: DTKeyValuePair[];
discoveryUrls: UAString[];
networkName: UAString;
port: UInt16;
endpointUrls: UAString[];
securitySettingNames: UAString[];
transportProfileUri: UAString;
userTokenSettingNames: UAString[];
reverseConnectUrls: UAString[];
}
export interface UDTServerEndpoint extends ExtensionObject, DTServerEndpoint {
}