Files
medusa-store/www/utils/generated/oas-output/schemas/AdminPriceListBatchResponse.ts
2024-09-17 19:27:28 +02:00

48 lines
1.2 KiB
TypeScript

/**
* @schema AdminPriceListBatchResponse
* type: object
* description: The details of the created, updated, and deleted prices in a price list.
* x-schemaName: AdminPriceListBatchResponse
* required:
* - created
* - updated
* - deleted
* properties:
* created:
* type: array
* description: The created prices.
* items:
* $ref: "#/components/schemas/AdminPrice"
* updated:
* type: array
* description: The updated prices.
* items:
* $ref: "#/components/schemas/AdminPrice"
* deleted:
* type: object
* description: The details of the deleted prices.
* required:
* - ids
* - object
* - deleted
* properties:
* ids:
* type: array
* description: The IDs of the deleted prices.
* items:
* type: string
* title: ids
* description: A price's ID.
* object:
* type: string
* title: object
* description: The name of the deleted object.
* default: "price"
* deleted:
* type: boolean
* title: deleted
* description: Whether the prices were deleted.
*
*/