import { DataType } from "node-opcua-variant"; import { LocalizedText } from "node-opcua-data-model"; import { UInt32 } from "node-opcua-basic-types"; import { UABaseDataVariable, UABaseDataVariable_Base } from "./ua_base_data_variable"; import { DTServerStatus } from "./dt_server_status"; import { EnumServerState } from "./enum_server_state"; import { DTBuildInfo } from "./dt_build_info"; import { UABuildInfo } from "./ua_build_info"; /** * | | | * |----------------|------------------------------------------------------------| * |namespace |http://opcfoundation.org/UA/ | * |nodeClass |VariableType | * |typedDefinition |ServerStatusType i=2138 | * |dataType |ExtensionObject | * |dataType Name |DTServerStatus i=862 | * |value rank |-1 | * |isAbstract |false | */ export interface UAServerStatus_Base extends UABaseDataVariable_Base { startTime: UABaseDataVariable; currentTime: UABaseDataVariable; state: UABaseDataVariable; buildInfo: UABuildInfo; secondsTillShutdown: UABaseDataVariable; shutdownReason: UABaseDataVariable; } export interface UAServerStatus extends UABaseDataVariable, UAServerStatus_Base { }