- 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;
24 lines
540 B
TypeScript
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;
|
|
}
|