* regenerate oas to fix duplicate keys * fix clean:oas script * fix max-stack errors * fix max-level condition
32 lines
652 B
TypeScript
32 lines
652 B
TypeScript
/**
|
|
* @schema AdminCustomerListResponse
|
|
* type: object
|
|
* description: SUMMARY
|
|
* x-schemaName: AdminCustomerListResponse
|
|
* required:
|
|
* - customers
|
|
* - limit
|
|
* - offset
|
|
* - count
|
|
* properties:
|
|
* customers:
|
|
* type: array
|
|
* description: The customer's customers.
|
|
* items:
|
|
* $ref: "#/components/schemas/CustomerResponse"
|
|
* limit:
|
|
* type: number
|
|
* title: limit
|
|
* description: The customer's limit.
|
|
* offset:
|
|
* type: number
|
|
* title: offset
|
|
* description: The customer's offset.
|
|
* count:
|
|
* type: number
|
|
* title: count
|
|
* description: The customer's count.
|
|
*
|
|
*/
|
|
|