# `SquidMesh.StepAttempt`
[🔗](https://github.com/ccarvalho-eng/squid_mesh/blob/main/lib/squid_mesh/step_attempt.ex#L1)

Public representation of one workflow step attempt.

Attempt history is exposed separately from the persistence schema so host
applications can inspect retry history without depending on Ecto structs.

# `status`

```elixir
@type status() :: :running | :completed | :failed
```

# `t`

```elixir
@type t() :: %SquidMesh.StepAttempt{
  attempt_number: term(),
  error: term(),
  id: term(),
  inserted_at: term(),
  status: term(),
  updated_at: term()
}
```

---

*Consult [api-reference.md](api-reference.md) for complete listing*
