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
609 B
TypeScript
32 lines
609 B
TypeScript
/**
|
|
* @schema AdminUserListResponse
|
|
* type: object
|
|
* description: SUMMARY
|
|
* x-schemaName: AdminUserListResponse
|
|
* required:
|
|
* - limit
|
|
* - offset
|
|
* - count
|
|
* - users
|
|
* properties:
|
|
* limit:
|
|
* type: number
|
|
* title: limit
|
|
* description: The user's limit.
|
|
* offset:
|
|
* type: number
|
|
* title: offset
|
|
* description: The user's offset.
|
|
* count:
|
|
* type: number
|
|
* title: count
|
|
* description: The user's count.
|
|
* users:
|
|
* type: array
|
|
* description: The user's users.
|
|
* items:
|
|
* $ref: "#/components/schemas/AdminUser"
|
|
*
|
|
*/
|
|
|