@opcua/for-node-red
Version:
The Node-RED node to communicate via OPC UA, powered NodeOPCUA and developed by Sterfive's team
38 lines (35 loc) • 2.47 kB
text/typescript
import type { UAProperty } from "node-opcua-address-space-base";
import type { UAString } from "node-opcua-basic-types";
import type { NodeId } from "node-opcua-nodeid";
import type { StatusCode } from "node-opcua-status-code";
import type { DataType } from "node-opcua-variant";
import type { DTArgument } from "./dt_argument";
import type { DTProgramDiagnostic2 } from "./dt_program_diagnostic_2";
import type { UABaseDataVariable, UABaseDataVariable_Base } from "./ua_base_data_variable";
// ----- this file has been automatically generated - do not edit
/**
* | | |
* |----------------|------------------------------------------------------------|
* |namespace |http://opcfoundation.org/UA/ |
* |nodeClass |VariableType |
* |typedDefinition |ProgramDiagnostic2Type i=15383 |
* |dataType |ExtensionObject |
* |dataType Name |DTProgramDiagnostic2 i=24033 |
* |value rank |-1 |
* |isAbstract |false |
*/
export interface UAProgramDiagnostic2_Base<T extends DTProgramDiagnostic2> extends UABaseDataVariable_Base<T, DataType.ExtensionObject> {
createSessionId: UABaseDataVariable<NodeId, DataType.NodeId>;
createClientName: UABaseDataVariable<UAString, DataType.String>;
invocationCreationTime: UABaseDataVariable<Date, DataType.DateTime>;
lastTransitionTime: UAProperty<Date, DataType.DateTime>;
lastMethodCall: UABaseDataVariable<UAString, DataType.String>;
lastMethodSessionId: UABaseDataVariable<NodeId, DataType.NodeId>;
lastMethodInputArguments: UABaseDataVariable<DTArgument[], DataType.ExtensionObject>;
lastMethodOutputArguments: UABaseDataVariable<DTArgument[], DataType.ExtensionObject>;
lastMethodInputValues: UABaseDataVariable<any, any>;
lastMethodOutputValues: UABaseDataVariable<any, any>;
lastMethodCallTime: UABaseDataVariable<Date, DataType.DateTime>;
lastMethodReturnStatus: UABaseDataVariable<StatusCode, DataType.StatusCode>;
}
export interface UAProgramDiagnostic2<T extends DTProgramDiagnostic2> extends UABaseDataVariable<T, DataType.ExtensionObject>, UAProgramDiagnostic2_Base<T> {}