Represents the response object for executing an action in a MIS plugin.

interface MisExecuteActionResponseObject {
    OutputFiles: Object;
    Result: Object;
    Success: boolean;
}

Properties

OutputFiles: Object

The output files generated by the action execution. Converts the files to ObjectInstance if available, otherwise returns null.

Result: Object

The result of the action execution. Converts the result to an ObjectInstance.

Success: boolean

Indicates whether the action execution was successful.