UNPKG

@opcua/for-node-red

Version:

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

28 lines (25 loc) 1.59 kB
import type { UAObject, UAProperty } from "node-opcua-address-space-base"; import type { UAString } from "node-opcua-basic-types"; import type { DataType } from "node-opcua-variant"; import type { DTEventFilter } from "./dt_event_filter"; import type { DTUserTokenPolicy } from "./dt_user_token_policy"; import type { EnumMessageSecurityMode } from "./enum_message_security_mode"; // ----- this file has been automatically generated - do not edit /** * | | | * |----------------|------------------------------------------------------------| * |namespace |http://opcfoundation.org/UA/ | * |nodeClass |ObjectType | * |typedDefinition |HistoricalExternalEventSourceType i=32625 | * |isAbstract |false | */ export interface UAHistoricalExternalEventSource_Base { server?: UAProperty<UAString, DataType.String>; endpointUrl?: UAProperty<UAString, DataType.String>; securityMode?: UAProperty<EnumMessageSecurityMode, DataType.Int32>; securityPolicyUri?: UAProperty<UAString, DataType.String>; identityTokenPolicy?: UAProperty<DTUserTokenPolicy, DataType.ExtensionObject>; transportProfileUri?: UAProperty<UAString, DataType.String>; historicalEventFilter: UAProperty<DTEventFilter, DataType.ExtensionObject>; } export interface UAHistoricalExternalEventSource extends UAObject, UAHistoricalExternalEventSource_Base {}