# `Hunter.Collection.Item`
[🔗](https://github.com/milmazz/hunter/blob/v0.8.0/lib/hunter/collection/item.ex#L1)

Collection item entity

An account featured in a `Hunter.Collection`

## Fields

  * `id` - the ID of the collection item
  * `account_id` - the ID of the account this item represents
  * `state` - consent state of the item, one of: `pending`, `accepted`,
    `rejected`, `revoked`
  * `created_at` - when the item was added to the collection

# `t`

```elixir
@type t() :: %Hunter.Collection.Item{
  account_id: String.t() | nil,
  created_at: String.t(),
  id: String.t(),
  state: String.t()
}
```

---

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