@lcdp/api-react-rest-client 2.10.0-develop.13258998193 → 2.10.0-develop.13259047931
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -9,7 +9,6 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
-
import type { SaleOfferStatus } from './SaleOfferStatus';
|
|
13
12
|
import type { AnyDistributionMode } from './AnyDistributionMode';
|
|
14
13
|
import type { Product } from './Product';
|
|
15
14
|
import type { Stock } from './Stock';
|
|
@@ -37,12 +36,6 @@ export interface OfferPlanificationFactoryAllOfRecords {
|
|
|
37
36
|
* @memberof OfferPlanificationFactoryAllOfRecords
|
|
38
37
|
*/
|
|
39
38
|
stock?: Stock;
|
|
40
|
-
/**
|
|
41
|
-
*
|
|
42
|
-
* @type {SaleOfferStatus}
|
|
43
|
-
* @memberof OfferPlanificationFactoryAllOfRecords
|
|
44
|
-
*/
|
|
45
|
-
status?: SaleOfferStatus;
|
|
46
39
|
/**
|
|
47
40
|
*
|
|
48
41
|
* @type {number}
|
|
@@ -14,7 +14,6 @@
|
|
|
14
14
|
*/
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
16
|
exports.OfferPlanificationFactoryAllOfRecordsToJSON = exports.OfferPlanificationFactoryAllOfRecordsFromJSONTyped = exports.OfferPlanificationFactoryAllOfRecordsFromJSON = exports.instanceOfOfferPlanificationFactoryAllOfRecords = void 0;
|
|
17
|
-
var SaleOfferStatus_1 = require("./SaleOfferStatus");
|
|
18
17
|
var AnyDistributionMode_1 = require("./AnyDistributionMode");
|
|
19
18
|
var Product_1 = require("./Product");
|
|
20
19
|
var Stock_1 = require("./Stock");
|
|
@@ -37,7 +36,6 @@ function OfferPlanificationFactoryAllOfRecordsFromJSONTyped(json, ignoreDiscrimi
|
|
|
37
36
|
'product': (json['product'] === null || json['product'] === undefined) ? json['product'] : (0, Product_1.ProductFromJSON)(json['product']),
|
|
38
37
|
'distributionMode': (json['distributionMode'] === null || json['distributionMode'] === undefined) ? json['distributionMode'] : (0, AnyDistributionMode_1.AnyDistributionModeFromJSON)(json['distributionMode']),
|
|
39
38
|
'stock': (json['stock'] === null || json['stock'] === undefined) ? json['stock'] : (0, Stock_1.StockFromJSON)(json['stock']),
|
|
40
|
-
'status': (json['status'] === null || json['status'] === undefined) ? json['status'] : (0, SaleOfferStatus_1.SaleOfferStatusFromJSON)(json['status']),
|
|
41
39
|
'rank': json['rank'],
|
|
42
40
|
'description': json['description'],
|
|
43
41
|
};
|
|
@@ -51,7 +49,6 @@ function OfferPlanificationFactoryAllOfRecordsToJSON(value) {
|
|
|
51
49
|
'product': (0, Product_1.ProductToJSON)(value['product']),
|
|
52
50
|
'distributionMode': (0, AnyDistributionMode_1.AnyDistributionModeToJSON)(value['distributionMode']),
|
|
53
51
|
'stock': (0, Stock_1.StockToJSON)(value['stock']),
|
|
54
|
-
'status': (0, SaleOfferStatus_1.SaleOfferStatusToJSON)(value['status']),
|
|
55
52
|
'rank': value['rank'],
|
|
56
53
|
'description': value['description'],
|
|
57
54
|
};
|