outcome property

String? outcome
getter/setter pair

Outcome of the code execution.

Required. Possible string values are:

  • "OUTCOME_UNSPECIFIED" : Unspecified status. This value should not be used.
  • "OUTCOME_OK" : Code execution completed successfully. output contains the stdout, if any.
  • "OUTCOME_FAILED" : Code execution failed. output contains the stderr and stdout, if any.
  • "OUTCOME_DEADLINE_EXCEEDED" : Code execution ran for too long, and was cancelled. There may or may not be a partial output present.

Implementation

core.String? outcome;