@opcua/for-node-red
Version:
The Node-RED node to communicate via OPC UA, powered NodeOPCUA and developed by Sterfive's team
20 lines (19 loc) • 1.07 kB
TypeScript
import type { UAObject, UAProperty } from "node-opcua-address-space-base";
import type { Byte } from "node-opcua-basic-types";
import type { DataType } from "node-opcua-variant";
/**
* | | |
* |----------------|------------------------------------------------------------|
* |namespace |http://opcfoundation.org/UA/ |
* |nodeClass |ObjectType |
* |typedDefinition |AggregateConfigurationType i=11187 |
* |isAbstract |false |
*/
export interface UAAggregateConfiguration_Base {
treatUncertainAsBad: UAProperty<boolean, DataType.Boolean>;
percentDataBad: UAProperty<Byte, DataType.Byte>;
percentDataGood: UAProperty<Byte, DataType.Byte>;
useSlopedExtrapolation: UAProperty<boolean, DataType.Boolean>;
}
export interface UAAggregateConfiguration extends UAObject, UAAggregateConfiguration_Base {
}