StepResult

data class StepResult(val outcome: Outcome, val details: Any? = null)

The outcome of a single step execution.

Parameters

outcome

The result type (pass, fail, friction).

details

Optional metadata or reason for failure/friction.

Constructors

Link copied to clipboard
constructor(outcome: Outcome, details: Any? = null)

Properties

Link copied to clipboard
val details: Any? = null
Link copied to clipboard