hunter/lib/hunter/context.ex

13 lines
312 B
Elixir

defmodule Hunter.Context do
@moduledoc """
Context entity
## Fields
* `ancestors` - The ancestors of the status in the conversation, as a list of Statuses
* `descendants` - The descendants of the status in the conversation, as a list of Statuses
"""
defstruct [:ancestors, :descendants]
end