hunter/lib/hunter/context.ex

13 lines
312 B
Elixir
Raw Normal View History

2017-04-08 01:30:17 -04:00
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