Interface CodeExecutionResult

Result of executing the [ExecutableCode]. Always follows a part containing the [ExecutableCode].

interface CodeExecutionResult {
    outcome?: Outcome;
    output?: string;
}

Properties

Properties

outcome?: Outcome

Required. Outcome of the code execution.

output?: string

Optional. Contains stdout when code execution is successful, stderr or other description otherwise.

MMNEPVFCICPMFPCPTTAAATR