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

List entity

A list of some users that the authenticated user follows

## Fields

  * `id` - the ID of the list
  * `title` - the user-defined title of the list
  * `replies_policy` - which replies should be shown in the list, one of:
    `followed`, `list`, `none`
  * `exclusive` - whether members of the list are removed from the home
    timeline

# `t`

```elixir
@type t() :: %Hunter.List{
  exclusive: boolean() | nil,
  id: String.t(),
  replies_policy: String.t(),
  title: String.t()
}
```

---

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