UNPKG

@opcua/for-node-red

Version:

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

26 lines (23 loc) 1.45 kB
import type { UAObject } from "node-opcua-address-space-base"; import type { UAString, UInt64 } from "node-opcua-basic-types"; import type { DataType } from "node-opcua-variant"; import type { EnumInterfaceAdminStatus } from "./enum_interface_admin_status"; import type { EnumInterfaceOperStatus } from "./enum_interface_oper_status"; import type { UAAnalogUnit } from "./ua_analog_unit"; import type { UABaseDataVariable } from "./ua_base_data_variable"; // ----- this file has been automatically generated - do not edit /** * | | | * |----------------|------------------------------------------------------------| * |namespace |http://opcfoundation.org/UA/ | * |nodeClass |ObjectType | * |typedDefinition |IetfBaseNetworkInterfaceType i=25221 | * |isAbstract |false | */ export interface UAIetfBaseNetworkInterface_Base { adminStatus: UABaseDataVariable<EnumInterfaceAdminStatus, DataType.Int32>; operStatus: UABaseDataVariable<EnumInterfaceOperStatus, DataType.Int32>; physAddress?: UABaseDataVariable<UAString, DataType.String>; speed: UAAnalogUnit<UInt64, DataType.UInt64>; } export interface UAIetfBaseNetworkInterface extends UAObject, UAIetfBaseNetworkInterface_Base {}