# `PgFlow.RunHistoryCell`
[🔗](https://github.com/agoodway/pgflow/blob/v0.4.0/lib/pgflow/run_history_cell.ex#L1)

Typed result for one step in a run history projection.

# `t`

```elixir
@type t() :: %PgFlow.RunHistoryCell{
  duration_ms: Decimal.t() | nil,
  run_id: Ecto.UUID.t(),
  started_at: DateTime.t(),
  status: String.t() | nil,
  step_slug: String.t() | nil
}
```

# `new`

```elixir
@spec new(map()) :: t()
```

Builds a run history cell from a complete query projection.

---

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