@opcua/for-node-red
Version:
The Node-RED node to communicate via OPC UA, powered NodeOPCUA and developed by Sterfive's team
25 lines (24 loc) • 1.07 kB
TypeScript
import type { Int32 } from "node-opcua-basic-types";
import type { ExtensionObject } from "node-opcua-extension-object";
import type { DTStructure } from "./dt_structure";
/**
* | | |
* |-----------|------------------------------------------------------------|
* | namespace |http://opcfoundation.org/UA/ |
* | nodeClass |DataType |
* | name |EndpointConfiguration |
* | isAbstract|false |
*/
export interface DTEndpointConfiguration extends DTStructure {
operationTimeout: Int32;
useBinaryEncoding: boolean;
maxStringLength: Int32;
maxByteStringLength: Int32;
maxArrayLength: Int32;
maxMessageSize: Int32;
maxBufferSize: Int32;
channelLifetime: Int32;
securityTokenLifetime: Int32;
}
export interface UDTEndpointConfiguration extends ExtensionObject, DTEndpointConfiguration {
}