Interface RequestExecuteResponse

interface RequestExecuteResponse {
    console: string[];
    errors: string[];
    outputParams: any[];
}

Properties

console: string[]

Information written by the script to the console

errors: string[]

Any exception thrown by the script that halted execution

outputParams: any[]

Any output parameters (imgout, jsonout, etc) returned by the script

Generated using TypeDoc