@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.65 kB
text/typescript
import type { UAProperty } from "node-opcua-address-space-base";
import type { UInt32 } from "node-opcua-basic-types";
import type { LocalizedText, QualifiedName } from "node-opcua-data-model";
import type { DataType } from "node-opcua-variant";
import type { UABaseDataVariable, UABaseDataVariable_Base } from "./ua_base_data_variable";
// ----- this file has been automatically generated - do not edit
/**
* | | |
* |----------------|------------------------------------------------------------|
* |namespace |http://opcfoundation.org/UA/ |
* |nodeClass |VariableType |
* |typedDefinition |StateVariableType i=2755 |
* |dataType |LocalizedText |
* |dataType Name |LocalizedText i=21 |
* |value rank |-1 |
* |isAbstract |false |
*/
export interface UAStateVariable_Base<T extends LocalizedText> extends UABaseDataVariable_Base<T, DataType.LocalizedText> {
id: UAProperty<any, any>;
name?: UAProperty<QualifiedName, DataType.QualifiedName>;
number?: UAProperty<UInt32, DataType.UInt32>;
effectiveDisplayName?: UAProperty<LocalizedText, DataType.LocalizedText>;
}
export interface UAStateVariable<T extends LocalizedText> extends UABaseDataVariable<T, DataType.LocalizedText>, UAStateVariable_Base<T> {}