InterfaceNotificationRequest

interface NotificationRequest {
    account: mastodon.v1.Account;
    createdAt: string;
    id: string;
    lastStatus?: null | Status;
    notificationsCount: number;
    updatedAt: string;
}

Properties

The account that performed the action that generated the filtered notifications.

createdAt: string

The timestamp of the notification request, i.e. when the first filtered notification from that user was created.

id: string

The id of the notification request in the database.

lastStatus?: null | Status

Most recent status associated with a filtered notification from that account.

notificationsCount: number

How many of this account’s notifications were filtered.

updatedAt: string

The timestamp of when the notification request was last updated.