import { UAObject, UAProperty } from "node-opcua-address-space-base"; import { DataType } from "node-opcua-variant"; import { Guid } from "node-opcua-basic-types"; import { DTConfigurationVersion } from "./dt_configuration_version"; import { DTDataSetMeta } from "./dt_data_set_meta"; import { UAExtensionFields } from "./ua_extension_fields"; /** * | | | * |----------------|------------------------------------------------------------| * |namespace |http://opcfoundation.org/UA/ | * |nodeClass |ObjectType | * |typedDefinition |PublishedDataSetType i=14509 | * |isAbstract |false | */ export interface UAPublishedDataSet_Base { configurationVersion: UAProperty; dataSetMetaData: UAProperty; dataSetClassId?: UAProperty; cyclicDataSet?: UAProperty; extensionFields?: UAExtensionFields; } export interface UAPublishedDataSet extends UAObject, UAPublishedDataSet_Base { }