Modrinth API Types - v1.1.0
    Preparing search index...

    Type Alias APINotification

    type APINotification = {
        actions: APINotificationAction[];
        created: Date;
        id: string;
        link: string;
        read: boolean;
        text: string;
        title: string;
        type: NotificationType | null;
        user_id: string;
    }
    Index

    Properties

    A list of actions that can be performed.

    created: Date

    The time at which the notification was created.

    id: string

    The id of the notification.

    link: string

    A link to the related project or version.

    read: boolean

    Whether the notification has been read or not.

    text: string

    The body text of the notification.

    title: string

    The title of the notification.

    type: NotificationType | null

    The type of notification.

    user_id: string

    The id of the user who received the notification.