Hunter.NotificationRequest (hunter v0.7.0)

Copy Markdown View Source

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

Summary

Types

t()

@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()
}