Executed

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

Constructors

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

Properties

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