masto
    Preparing search index...

    Interface NotificationRequest

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

    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?: Status | null

    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.