Files
medusa-store/www/utils/generated/oas-output/schemas/AdminUserListResponse.ts
Shahed Nasser 426c39c04b chore(oas): [14/n] improve OAS schemas (#9202)
* chore(oas): [14/n] improve OAS schemas

* fix description of required_quantity
2024-09-19 18:52:46 +02:00

32 lines
707 B
TypeScript

/**
* @schema AdminUserListResponse
* type: object
* description: The paginated list of users.
* x-schemaName: AdminUserListResponse
* required:
* - limit
* - offset
* - count
* - users
* properties:
* limit:
* type: number
* title: limit
* description: The maximum number of items returned.
* offset:
* type: number
* title: offset
* description: The number of items skipped before retrieving the returned items.
* count:
* type: number
* title: count
* description: The total number of items.
* users:
* type: array
* description: The list of users.
* items:
* $ref: "#/components/schemas/AdminUser"
*
*/