NotificationRequest entity
Represents a group of filtered notifications from a specific user
Fields
id- the ID of the notification requestcreated_at- when the first filtered notification from that user was createdupdated_at- when the notification request was last updatedaccount- theHunter.Accountthat performed the actions being filterednotifications_count- how many of this account's notifications were filtered, as a stringlast_status- the most recentHunter.Statusassociated with a filtered notification from the account, if any
Summary
Types
@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() }