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

FeaturedTag entity

A hashtag that is featured on a profile

## Fields

  * `id` - the ID of the featured tag
  * `name` - the name of the hashtag being featured, without the `#`
  * `url` - link to all statuses by the user that contain the hashtag
  * `statuses_count` - number of authored statuses containing the hashtag
  * `last_status_at` - date of the last authored status containing the
    hashtag, if any

# `t`

```elixir
@type t() :: %Hunter.FeaturedTag{
  id: String.t(),
  last_status_at: String.t() | nil,
  name: String.t(),
  statuses_count: non_neg_integer(),
  url: String.t()
}
```

---

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