@opcua/for-node-red
Version:
The Node-RED node to communicate via OPC UA, powered NodeOPCUA and developed by Sterfive's team
23 lines (20 loc) • 1.29 kB
text/typescript
import type { UAProperty } from "node-opcua-address-space-base";
import type { UAString } from "node-opcua-basic-types";
import type { DataType } from "node-opcua-variant";
import type { UAAuditSessionEvent, UAAuditSessionEvent_Base } from "./ua_audit_session_event";
// ----- this file has been automatically generated - do not edit
/**
* | | |
* |----------------|------------------------------------------------------------|
* |namespace |http://opcfoundation.org/UA/ |
* |nodeClass |ObjectType |
* |typedDefinition |AuditCreateSessionEventType i=2071 |
* |isAbstract |true |
*/
export interface UAAuditCreateSessionEvent_Base extends UAAuditSessionEvent_Base {
secureChannelId: UAProperty<UAString, DataType.String>;
clientCertificate: UAProperty<Buffer, DataType.ByteString>;
clientCertificateThumbprint: UAProperty<UAString, DataType.String>;
revisedSessionTimeout: UAProperty<number, DataType.Double>;
}
export interface UAAuditCreateSessionEvent extends UAAuditSessionEvent, UAAuditCreateSessionEvent_Base {}