# `Hunter.Conversation`
[🔗](https://github.com/milmazz/hunter/blob/v0.8.0/lib/hunter/conversation.ex#L1)

Conversation entity

A conversation with "direct message" visibility

## Fields

  * `id` - the ID of the conversation
  * `unread` - whether the conversation is currently marked as unread
  * `accounts` - list of `Hunter.Account`, participants in the conversation
  * `last_status` - the last `Hunter.Status` in the conversation, if any

# `t`

```elixir
@type t() :: %Hunter.Conversation{
  accounts: [Hunter.Account.t()],
  id: String.t(),
  last_status: Hunter.Status.t() | nil,
  unread: boolean()
}
```

---

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