UNPKG

@opcua/for-node-red

Version:

The Node-RED node to communicate via OPC UA, powered NodeOPCUA and developed by Sterfive's team

24 lines (23 loc) 1.23 kB
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 { DTApplicationDescription } from "./dt_application_description"; import type { DTBaseConfigurationRecord } from "./dt_base_configuration_record"; import type { DTKeyValuePair } from "./dt_key_value_pair"; /** * | | | * |-----------|------------------------------------------------------------| * | namespace |http://opcfoundation.org/UA/ | * | nodeClass |DataType | * | name |ApplicationIdentityDataType | * | isAbstract|false | */ export interface DTApplicationIdentity extends DTBaseConfigurationRecord { name: UAString; recordProperties: DTKeyValuePair[]; applicationUri: UAString; applicationNames: LocalizedText[]; additionalServers: DTApplicationDescription[]; } export interface UDTApplicationIdentity extends ExtensionObject, DTApplicationIdentity { }