Notification
Notification
type NotificationType =
| 'ownQuestionForked'
| 'newQuestions'
| 'newUser'
| 'userJoinedMandant'
| 'forkStatusUpdate'
| string
type NotificationInformVia = 'push' | 'email' | 'inApp' | string
interface NotificationEntry {
id: string
userId: string
type: NotificationType
data: any
readAt: any | null
informVia: NotificationInformVia[]
createdAt: any
modifiedAt: any
}