UNPKG

@opcua/for-node-red

Version:

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

27 lines (24 loc) 1.32 kB
import type { UInt32 } from "node-opcua-basic-types"; import type { LocalizedText } from "node-opcua-data-model"; import type { ExtensionObject } from "node-opcua-extension-object"; import type { DTBuildInfo } from "./dt_build_info"; import type { DTStructure } from "./dt_structure"; import type { EnumServerState } from "./enum_server_state"; // ----- this file has been automatically generated - do not edit /** * | | | * |-----------|------------------------------------------------------------| * | namespace |http://opcfoundation.org/UA/ | * | nodeClass |DataType | * | name |ServerStatusDataType | * | isAbstract|false | */ export interface DTServerStatus extends DTStructure { startTime: Date; // DateTime ns=0;i=294 currentTime: Date; // DateTime ns=0;i=294 state: EnumServerState; // Int32 ns=0;i=852 buildInfo: DTBuildInfo; // ExtensionObject ns=0;i=338 secondsTillShutdown: UInt32; // UInt32 ns=0;i=7 shutdownReason: LocalizedText; // LocalizedText ns=0;i=21 } export interface UDTServerStatus extends ExtensionObject, DTServerStatus {};