red-ui/libs/red-ui-http/src/lib/model/notification.ts
Valentin f576c7bb33 WIP on notifications
- replaced mock notifications with the real ones from database;
- grouped notifications using the same format as for the comments;
- called API to mark the notification as read/unread;
- added messages with links for notification targets;
2021-08-16 12:03:56 +02:00

24 lines
540 B
TypeScript

/**
* API Documentation for Redaction Gateway
* Description for redaction
*
* OpenAPI spec version: 1.0
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*/
export interface Notification {
creationDate?: string;
issuerId?: string;
notificationId?: string;
notificationType?: string;
readDate?: string;
seenDate?: string;
softDeleted?: string;
target?: any;
userId?: string;
}