UNPKG

@opcua/for-node-red

Version:

The Node-RED node to communicate via OPC UA, powered NodeOPCUA and developed by Sterfive's team

24 lines (23 loc) 1.14 kB
import type { UAString, UInt32 } from "node-opcua-basic-types"; import type { ExtensionObject } from "node-opcua-extension-object"; import type { NodeId } from "node-opcua-nodeid"; import type { DTBaseConfigurationRecord } from "./dt_base_configuration_record"; import type { DTKeyValuePair } from "./dt_key_value_pair"; /** * | | | * |-----------|------------------------------------------------------------| * | namespace |http://opcfoundation.org/UA/ | * | nodeClass |DataType | * | name |CertificateGroupDataType | * | isAbstract|false | */ export interface DTCertificateGroup extends DTBaseConfigurationRecord { name: UAString; recordProperties: DTKeyValuePair[]; purpose: NodeId; certificateTypes: NodeId[]; isCertificateAssigned: boolean[]; validationOptions: UInt32; } export interface UDTCertificateGroup extends ExtensionObject, DTCertificateGroup { }