import { UAObject, UAProperty } from "node-opcua-address-space-base"; import { DataType } from "node-opcua-variant"; import { DTSimpleAttributeOperand } from "./dt_simple_attribute_operand"; import { UAFolder } from "./ua_folder"; /** * | | | * |----------------|------------------------------------------------------------| * |namespace |http://opcfoundation.org/UA/ | * |nodeClass |ObjectType | * |typedDefinition |HistoricalEventConfigurationType i=32621 | * |isAbstract |false | */ export interface UAHistoricalEventConfiguration_Base { eventTypes: UAFolder; startOfArchive?: UAProperty; startOfOnlineArchive?: UAProperty; sortByEventFields?: UAProperty; } export interface UAHistoricalEventConfiguration extends UAObject, UAHistoricalEventConfiguration_Base { }