@lcdp/api-react-rest-client 2.13.9-LDS-4699-etape-1-no-more-archive-of-frid.17071891745 → 2.13.9-LDS-4699-etape-1-no-more-archive-of-frid.17091298859
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 { ProductStorageType } from './ProductStorageType';
|
|
13
12
|
import type { Barcodes } from './Barcodes';
|
|
14
13
|
/**
|
|
15
14
|
*
|
|
@@ -78,11 +77,11 @@ export interface ProductInsightCreateOrUpdateParameters {
|
|
|
78
77
|
*/
|
|
79
78
|
vatId?: string | null;
|
|
80
79
|
/**
|
|
81
|
-
*
|
|
82
|
-
* @type {
|
|
80
|
+
* Product Storage Type identifier
|
|
81
|
+
* @type {string}
|
|
83
82
|
* @memberof ProductInsightCreateOrUpdateParameters
|
|
84
83
|
*/
|
|
85
|
-
storageType?:
|
|
84
|
+
storageType?: string | null;
|
|
86
85
|
}
|
|
87
86
|
/**
|
|
88
87
|
* Check if a given object implements the ProductInsightCreateOrUpdateParameters interface.
|
|
@@ -14,7 +14,6 @@
|
|
|
14
14
|
*/
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
16
|
exports.ProductInsightCreateOrUpdateParametersToJSON = exports.ProductInsightCreateOrUpdateParametersFromJSONTyped = exports.ProductInsightCreateOrUpdateParametersFromJSON = exports.instanceOfProductInsightCreateOrUpdateParameters = void 0;
|
|
17
|
-
var ProductStorageType_1 = require("./ProductStorageType");
|
|
18
17
|
var Barcodes_1 = require("./Barcodes");
|
|
19
18
|
/**
|
|
20
19
|
* Check if a given object implements the ProductInsightCreateOrUpdateParameters interface.
|
|
@@ -44,7 +43,7 @@ function ProductInsightCreateOrUpdateParametersFromJSONTyped(json, ignoreDiscrim
|
|
|
44
43
|
'secondaryTypeId': json['secondaryTypeId'],
|
|
45
44
|
'laboratoryId': json['laboratoryId'],
|
|
46
45
|
'vatId': json['vatId'],
|
|
47
|
-
'storageType':
|
|
46
|
+
'storageType': json['storageType'],
|
|
48
47
|
};
|
|
49
48
|
}
|
|
50
49
|
exports.ProductInsightCreateOrUpdateParametersFromJSONTyped = ProductInsightCreateOrUpdateParametersFromJSONTyped;
|
|
@@ -63,7 +62,7 @@ function ProductInsightCreateOrUpdateParametersToJSON(value) {
|
|
|
63
62
|
'secondaryTypeId': value['secondaryTypeId'],
|
|
64
63
|
'laboratoryId': value['laboratoryId'],
|
|
65
64
|
'vatId': value['vatId'],
|
|
66
|
-
'storageType':
|
|
65
|
+
'storageType': value['storageType'],
|
|
67
66
|
};
|
|
68
67
|
}
|
|
69
68
|
exports.ProductInsightCreateOrUpdateParametersToJSON = ProductInsightCreateOrUpdateParametersToJSON;
|