@@ -2628,9 +2628,16 @@ export = CatalogPlatformModel;
26282628/**
26292629 * @typedef LocationQuantityRequestSchema
26302630 * @property {string } [expiration_date] - The expiration date of the inventory item.
2631- * @property {number } [total_quantity] - The total quantity of the inventory item.
2632- * @property {number } [damaged_quantity] - The total quantity of the inventory item.
2633- * @property {number } [not_available_quantity] - The total quantity of the inventory item.
2631+ * @property {number } [total_quantity] - The total quantity of the inventory
2632+ * item. Any one of total_quantity, damaged_quantity, not_available_quantity
2633+ * should be provided.
2634+ * @property {number } [damaged_quantity] - The damaged quantity of the inventory
2635+ * item. Any one of total_quantity, damaged_quantity, not_available_quantity
2636+ * should be provided.
2637+ * @property {number } [not_available_quantity] - The not available quantity of
2638+ * the inventory item. Any one of total_quantity, damaged_quantity,
2639+ * not_available_quantity should be provided.
2640+ * @property {string } [mode] - Indicates whether delta or replace operation for inventory
26342641 */
26352642/**
26362643 * @typedef LocationPriceQuantitySuccessResponseSchema
@@ -10042,17 +10049,27 @@ type LocationQuantityRequestSchema = {
1004210049 */
1004310050 expiration_date ?: string ;
1004410051 /**
10045- * - The total quantity of the inventory item.
10052+ * - The total quantity of the inventory
10053+ * item. Any one of total_quantity, damaged_quantity, not_available_quantity
10054+ * should be provided.
1004610055 */
1004710056 total_quantity ?: number ;
1004810057 /**
10049- * - The total quantity of the inventory item.
10058+ * - The damaged quantity of the inventory
10059+ * item. Any one of total_quantity, damaged_quantity, not_available_quantity
10060+ * should be provided.
1005010061 */
1005110062 damaged_quantity ?: number ;
1005210063 /**
10053- * - The total quantity of the inventory item.
10064+ * - The not available quantity of
10065+ * the inventory item. Any one of total_quantity, damaged_quantity,
10066+ * not_available_quantity should be provided.
1005410067 */
1005510068 not_available_quantity ?: number ;
10069+ /**
10070+ * - Indicates whether delta or replace operation for inventory
10071+ */
10072+ mode ?: string ;
1005610073} ;
1005710074/** @returns {LocationPriceQuantitySuccessResponseSchema } */
1005810075declare function LocationPriceQuantitySuccessResponseSchema ( ) : LocationPriceQuantitySuccessResponseSchema ;
0 commit comments