import type { UAString } from "node-opcua-basic-types";
import type { ExtensionObject } from "node-opcua-extension-object";
import type { NodeId } from "node-opcua-nodeid";
import type { StatusCode } from "node-opcua-status-code";
import type { Variant } from "node-opcua-variant";
import type { DTArgument } from "./dt_argument";
import type { DTStructure } from "./dt_structure";
/**
 * |           |                                                            |
 * |-----------|------------------------------------------------------------|
 * | namespace |http://opcfoundation.org/UA/                                |
 * | nodeClass |DataType                                                    |
 * | name      |ProgramDiagnostic2DataType                                  |
 * | isAbstract|false                                                       |
 */
export interface DTProgramDiagnostic2 extends DTStructure {
    createSessionId: NodeId;
    createClientName: UAString;
    invocationCreationTime: Date;
    lastTransitionTime: Date;
    lastMethodCall: UAString;
    lastMethodSessionId: NodeId;
    lastMethodInputArguments: DTArgument[];
    lastMethodOutputArguments: DTArgument[];
    lastMethodInputValues: Variant[];
    lastMethodOutputValues: Variant[];
    lastMethodCallTime: Date;
    lastMethodReturnStatus: StatusCode;
}
export interface UDTProgramDiagnostic2 extends ExtensionObject, DTProgramDiagnostic2 {
}
