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

GroupedNotificationsResults entity

The response of the grouped notifications API: the notification groups
plus the accounts and statuses they reference, deduplicated

## Fields

  * `accounts` - list of `Hunter.Account` referenced by the groups
  * `partial_accounts` - partial account representations, only returned
    when requesting `expand_accounts=partial_avatars`
  * `statuses` - list of `Hunter.Status` referenced by the groups
  * `notification_groups` - list of `Hunter.NotificationGroup`

# `t`

```elixir
@type t() :: %Hunter.GroupedNotificationsResults{
  accounts: [Hunter.Account.t()],
  notification_groups: [Hunter.NotificationGroup.t()],
  partial_accounts: [map()] | nil,
  statuses: [Hunter.Status.t()]
}
```

---

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