# `Gralkor.IngestedRepresentation`
[🔗](https://github.com/elimydlarz/jido_gralkor/blob/main/lib/gralkor/ingested_representation.ex#L1)

The successful result of storing one piece of evidence through one Lens.

Multiple Lens representations of the same submitted information share an
`evidence_id`; each representation has its own `id` and retains the Lens
identity needed by post-ingestion Reflections.

# `t`

```elixir
@type t() :: %Gralkor.IngestedRepresentation{
  content: String.t(),
  evidence_id: String.t(),
  id: String.t(),
  lens: String.t(),
  result: :ok
}
```

# `new`

```elixir
@spec new(String.t(), String.t(), String.t()) :: t()
```

# `new_evidence_id`

```elixir
@spec new_evidence_id() :: String.t()
```

---

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