@opcua/for-node-red
Version:
The Node-RED node to communicate via OPC UA, powered NodeOPCUA and developed by Sterfive's team
27 lines (24 loc) • 1.28 kB
text/typescript
import type { Int32 } from "node-opcua-basic-types";
import type { ExtensionObject } from "node-opcua-extension-object";
import type { DTStructure } from "./dt_structure";
// ----- this file has been automatically generated - do not edit
/**
* | | |
* |-----------|------------------------------------------------------------|
* | namespace |http://opcfoundation.org/UA/ |
* | nodeClass |DataType |
* | name |EndpointConfiguration |
* | isAbstract|false |
*/
export interface DTEndpointConfiguration extends DTStructure {
operationTimeout: Int32; // Int32 ns=0;i=6
useBinaryEncoding: boolean; // Boolean ns=0;i=1
maxStringLength: Int32; // Int32 ns=0;i=6
maxByteStringLength: Int32; // Int32 ns=0;i=6
maxArrayLength: Int32; // Int32 ns=0;i=6
maxMessageSize: Int32; // Int32 ns=0;i=6
maxBufferSize: Int32; // Int32 ns=0;i=6
channelLifetime: Int32; // Int32 ns=0;i=6
securityTokenLifetime: Int32; // Int32 ns=0;i=6
}
export interface UDTEndpointConfiguration extends ExtensionObject, DTEndpointConfiguration {};