@opcua/for-node-red
Version:
The Node-RED node to communicate via OPC UA, powered NodeOPCUA and developed by Sterfive's team
35 lines (34 loc) • 965 B
TypeScript
/**
* | | |
* |-----------|------------------------------------------------------------|
* | namespace |http://opcfoundation.org/UA/ |
* | nodeClass |DataType |
* | name |TrustListMasks |
* | isAbstract|false |
*/
export declare enum EnumTrustListMasks {
/**
* No fields are provided.
*/
None = 0,
/**
* The TrustedCertificates are provided.
*/
TrustedCertificates = 1,
/**
* The TrustedCrls are provided.
*/
TrustedCrls = 2,
/**
* The IssuerCertificates are provided.
*/
IssuerCertificates = 4,
/**
* The IssuerCrls are provided.
*/
IssuerCrls = 8,
/**
* All fields are provided.
*/
All = 15
}