import { UAObject, UAProperty } from "node-opcua-address-space-base"; import { DataType } from "node-opcua-variant"; import { UInt32, UAString } from "node-opcua-basic-types"; import { EnumMessageSecurityMode } from "./enum_message_security_mode"; import { DTEndpointDescription } from "./dt_endpoint_description"; import { DTKeyValuePair } from "./dt_key_value_pair"; import { UAPubSubStatus } from "./ua_pub_sub_status"; /** * | | | * |----------------|------------------------------------------------------------| * |namespace |http://opcfoundation.org/UA/ | * |nodeClass |ObjectType | * |typedDefinition |PubSubGroupType i=14232 | * |isAbstract |true | */ export interface UAPubSubGroup_Base { securityMode: UAProperty; securityGroupId?: UAProperty; securityKeyServices?: UAProperty; maxNetworkMessageSize: UAProperty; groupProperties: UAProperty; status: UAPubSubStatus; } export interface UAPubSubGroup extends UAObject, UAPubSubGroup_Base { }