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