Automated changes by [create-pull-request](https://github.com/peter-evans/create-pull-request) GitHub action Co-authored-by: Shahed Nasser <27354907+shahednasser@users.noreply.github.com>
32 lines
689 B
TypeScript
32 lines
689 B
TypeScript
/**
|
|
* @schema AdminNotificationListResponse
|
|
* type: object
|
|
* description: SUMMARY
|
|
* x-schemaName: AdminNotificationListResponse
|
|
* required:
|
|
* - limit
|
|
* - offset
|
|
* - count
|
|
* - notifications
|
|
* properties:
|
|
* limit:
|
|
* type: number
|
|
* title: limit
|
|
* description: The notification's limit.
|
|
* offset:
|
|
* type: number
|
|
* title: offset
|
|
* description: The notification's offset.
|
|
* count:
|
|
* type: number
|
|
* title: count
|
|
* description: The notification's count.
|
|
* notifications:
|
|
* type: array
|
|
* description: The notification's notifications.
|
|
* items:
|
|
* $ref: "#/components/schemas/AdminNotification"
|
|
*
|
|
*/
|
|
|