NotificationListResponseDto: {
    notifications: {
        challengeId: string | null;
        contentId: string | null;
        createdAt: string;
        id: string;
        isRead: boolean;
        landingUrl: string | null;
        message: string | null;
        postId: string | null;
        requestorName: string | null;
        spaceId: string | null;
        type:
            | "NEW_POST"
            | "URGENT_POST"
            | "COMMENT"
            | "NEW_CHALLENGE"
            | "CHALLENGE_MEMBER_ADDED"
            | "CHALLENGE_TASK_INCOMPLETE"
            | "CHALLENGE_TASK_REMIND"
            | "CHALLENGE_ENDED"
            | "CHALLENGE_TASK_DEADLINE_CHANGED"
            | "CHALLENGE_MEMBER_REMOVED"
            | "QUIZ_GRADED"
            | "SURVEY_HALF_SUBMITTED"
            | "SURVEY_ALL_SUBMITTED"
            | "SURVEY_MODIFIED_RESTART"
            | "SURVEY_RENOTIFY_INCOMPLETE"
            | "SURVEY_VISIBLE_START"
            | "SURVEY_DUE_SOON";
    }[];
    unreadCount: number;
}