@opcua/for-node-red
Version:
The Node-RED node to communicate via OPC UA, powered NodeOPCUA and developed by Sterfive's team
20 lines (18 loc) • 1.05 kB
text/typescript
import type { UACertificateGroup } from "./ua_certificate_group";
import type { UAFolder, UAFolder_Base } from "./ua_folder";
// ----- this file has been automatically generated - do not edit
/**
* | | |
* |----------------|------------------------------------------------------------|
* |namespace |http://opcfoundation.org/UA/ |
* |nodeClass |ObjectType |
* |typedDefinition |CertificateGroupFolderType i=13813 |
* |isAbstract |false |
*/
export interface UACertificateGroupFolder_Base extends UAFolder_Base {
defaultApplicationGroup: UACertificateGroup;
defaultHttpsGroup?: UACertificateGroup;
defaultUserTokenGroup?: UACertificateGroup;
// PlaceHolder for $AdditionalGroup$
}
export interface UACertificateGroupFolder extends UAFolder, UACertificateGroupFolder_Base {}