@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.36 kB
text/typescript
import type { UAString } from "node-opcua-basic-types";
import type { LocalizedText } from "node-opcua-data-model";
import type { ExtensionObject } from "node-opcua-extension-object";
import type { DTStructure } from "./dt_structure";
import type { EnumApplication } from "./enum_application";
// ----- this file has been automatically generated - do not edit
/**
* | | |
* |-----------|------------------------------------------------------------|
* | namespace |http://opcfoundation.org/UA/ |
* | nodeClass |DataType |
* | name |ApplicationDescription |
* | isAbstract|false |
*/
export interface DTApplicationDescription extends DTStructure {
applicationUri: UAString; // String ns=0;i=12
productUri: UAString; // String ns=0;i=12
applicationName: LocalizedText; // LocalizedText ns=0;i=21
applicationType: EnumApplication; // Int32 ns=0;i=307
gatewayServerUri: UAString; // String ns=0;i=12
discoveryProfileUri: UAString; // String ns=0;i=12
discoveryUrls: UAString[]; // String ns=0;i=12
}
export interface UDTApplicationDescription extends ExtensionObject, DTApplicationDescription {};