@opcua/for-node-red
Version:
The Node-RED node to communicate via OPC UA, powered NodeOPCUA and developed by Sterfive's team
29 lines (26 loc) • 1.44 kB
text/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";
// ----- this file has been automatically generated - do not edit
/**
* | | |
* |-----------|------------------------------------------------------------|
* | namespace |http://opcfoundation.org/UA/ |
* | nodeClass |DataType |
* | name |ServerEndpointDataType |
* | isAbstract|false |
*/
export interface DTServerEndpoint extends DTEndpoint {
name: UAString; // String ns=0;i=12
recordProperties: DTKeyValuePair[]; // ExtensionObject ns=0;i=14533
discoveryUrls: UAString[]; // String ns=0;i=23751
networkName: UAString; // String ns=0;i=12
port: UInt16; // UInt16 ns=0;i=5
endpointUrls: UAString[]; // String ns=0;i=23751
securitySettingNames: UAString[]; // String ns=0;i=12
transportProfileUri: UAString; // String ns=0;i=23751
userTokenSettingNames: UAString[]; // String ns=0;i=12
reverseConnectUrls: UAString[]; // String ns=0;i=12
}
export interface UDTServerEndpoint extends ExtensionObject, DTServerEndpoint {};