ArchAstro. SDK. Types. ComputerExecResult
(archastro v0.3.3)
Copy Markdown
The result of executing a shell command on an agent's computer environment. Contains the captured output and the process exit code.
Summary
Types
@type t() :: %ArchAstro.SDK.Types.ComputerExecResult{ exit_code: integer() | ArchAstro.SDK.Unset.t(), output: String.t() | ArchAstro.SDK.Unset.t() }
Functions
@spec from_map(ArchAstro.SDK.JSON.object()) :: t()
@spec matches?(ArchAstro.SDK.JSON.t()) :: boolean()
@spec to_map(t()) :: ArchAstro.SDK.JSON.object()