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

NotificationRequest entity

Represents a group of filtered notifications from a specific user

## Fields

  * `id` - the ID of the notification request
  * `created_at` - when the first filtered notification from that user was
    created
  * `updated_at` - when the notification request was last updated
  * `account` - the `Hunter.Account` that performed the actions being
    filtered
  * `notifications_count` - how many of this account's notifications were
    filtered, as a string
  * `last_status` - the most recent `Hunter.Status` associated with a
    filtered notification from the account, if any

# `t`

```elixir
@type t() :: %Hunter.NotificationRequest{
  account: Hunter.Account.t(),
  created_at: String.t(),
  id: String.t(),
  last_status: Hunter.Status.t() | nil,
  notifications_count: String.t(),
  updated_at: String.t()
}
```

---

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