Executed

@JsonSerializable
@PolymorphicLabel(value = "code_execution_result")
data class Executed(val stdout: String? = null, val stderr: String? = null, val return_code: Int? = null, val content: List<CodeExecutionOutput> = emptyList()) : CodeExecutionContent(source)

Constructors

Link copied to clipboard
constructor(stdout: String? = null, stderr: String? = null, return_code: Int? = null, content: List<CodeExecutionOutput> = emptyList())

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard