1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-01 00:08:27 +01:00
unleash.unleash/frontend/src/openapi/models/markNotificationsAsReadSchema.ts

14 lines
315 B
TypeScript
Raw Normal View History

/**
2023-03-15 13:30:07 +01:00
* Generated by Orval
* Do not edit manually.
2023-03-15 13:30:07 +01:00
* See `gen:api` script in package.json
*/
/**
* Data used to mark notifications as being read
*/
export interface MarkNotificationsAsReadSchema {
/** A list of IDs belonging to the notifications you want to mark as read. */
notifications: number[];
}