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

Mention entity

## Fields

  * `url` - URL of user's profile (can be remote)
  * `username` - The username of the account
  * `acct` - Equals `username` for local users, includes `@domain` for remote ones
  * `id` - Account ID

# `t`

```elixir
@type t() :: %Hunter.Mention{
  acct: String.t(),
  id: String.t(),
  url: String.t(),
  username: String.t()
}
```

---

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