// ----- this file has been automatically generated - do not edit import { UAObject, UAProperty } from "node-opcua-address-space-base" import { DataType } from "node-opcua-variant" import { UInt32, UAString } from "node-opcua-basic-types" import { EnumExceptionDeviationFormat } from "./enum_exception_deviation_format" import { UAAggregateConfiguration } from "./ua_aggregate_configuration" import { UAFolder } from "./ua_folder" /** * | | | * |----------------|------------------------------------------------------------| * |namespace |http://opcfoundation.org/UA/ | * |nodeClass |ObjectType | * |typedDefinition |HistoricalDataConfigurationType i=2318 | * |isAbstract |false | */ export interface UAHistoricalDataConfiguration_Base { aggregateConfiguration: UAAggregateConfiguration; aggregateFunctions?: UAFolder; stepped: UAProperty; definition?: UAProperty; maxTimeInterval?: UAProperty; minTimeInterval?: UAProperty; exceptionDeviation?: UAProperty; exceptionDeviationFormat?: UAProperty; startOfArchive?: UAProperty; startOfOnlineArchive?: UAProperty; serverTimestampSupported?: UAProperty; maxTimeStoredValues?: UAProperty; maxCountStoredValues?: UAProperty; } export interface UAHistoricalDataConfiguration extends UAObject, UAHistoricalDataConfiguration_Base { }