// ----- this file has been automatically generated - do not edit import { UAMethod, UAProperty } from "node-opcua-address-space-base" import { DataType } from "node-opcua-variant" import { UInt16, Byte, UAString } from "node-opcua-basic-types" import { UAPubSubGroup, UAPubSubGroup_Base } from "./ua_pub_sub_group" import { UAWriterGroupTransport } from "./ua_writer_group_transport" import { UAWriterGroupMessage } from "./ua_writer_group_message" import { UAPubSubDiagnosticsWriterGroup } from "./ua_pub_sub_diagnostics_writer_group" /** * | | | * |----------------|------------------------------------------------------------| * |namespace |http://opcfoundation.org/UA/ | * |nodeClass |ObjectType | * |typedDefinition |WriterGroupType i=17725 | * |isAbstract |false | */ export interface UAWriterGroup_Base extends UAPubSubGroup_Base { writerGroupId: UAProperty; publishingInterval: UAProperty; keepAliveTime: UAProperty; priority: UAProperty; localeIds: UAProperty; headerLayoutUri: UAProperty; transportSettings?: UAWriterGroupTransport; messageSettings?: UAWriterGroupMessage; // PlaceHolder for $DataSetWriterName$ diagnostics?: UAPubSubDiagnosticsWriterGroup; addDataSetWriter?: UAMethod; removeDataSetWriter?: UAMethod; } export interface UAWriterGroup extends UAPubSubGroup, UAWriterGroup_Base { }