@opcua/for-node-red
Version:
The Node-RED node to communicate via OPC UA, powered NodeOPCUA and developed by Sterfive's team
23 lines (20 loc) • 1.23 kB
text/typescript
import type { UAObject, UAProperty } from "node-opcua-address-space-base";
import type { DataType } from "node-opcua-variant";
import type { DTSimpleAttributeOperand } from "./dt_simple_attribute_operand";
import type { UAFolder } from "./ua_folder";
// ----- this file has been automatically generated - do not edit
/**
* | | |
* |----------------|------------------------------------------------------------|
* |namespace |http://opcfoundation.org/UA/ |
* |nodeClass |ObjectType |
* |typedDefinition |HistoricalEventConfigurationType i=32621 |
* |isAbstract |false |
*/
export interface UAHistoricalEventConfiguration_Base {
eventTypes: UAFolder;
startOfArchive?: UAProperty<Date, DataType.DateTime>;
startOfOnlineArchive?: UAProperty<Date, DataType.DateTime>;
sortByEventFields?: UAProperty<DTSimpleAttributeOperand[], DataType.ExtensionObject>;
}
export interface UAHistoricalEventConfiguration extends UAObject, UAHistoricalEventConfiguration_Base {}