@lcdp/api-react-rest-client 2.13.9-LDS-4776-shadowban.17465728844 → 2.13.9-LDS-4812-api-changement-field-userstatis.17545397007
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.
package/package.json
CHANGED
|
@@ -16,11 +16,23 @@
|
|
|
16
16
|
*/
|
|
17
17
|
export interface UserStatisticLinkAllOfShortTermQoS {
|
|
18
18
|
/**
|
|
19
|
-
*
|
|
19
|
+
* Number of sales
|
|
20
20
|
* @type {number}
|
|
21
21
|
* @memberof UserStatisticLinkAllOfShortTermQoS
|
|
22
22
|
*/
|
|
23
|
-
|
|
23
|
+
numberOfSales?: number | null;
|
|
24
|
+
/**
|
|
25
|
+
* Number of sales with modification
|
|
26
|
+
* @type {number}
|
|
27
|
+
* @memberof UserStatisticLinkAllOfShortTermQoS
|
|
28
|
+
*/
|
|
29
|
+
numberOfSalesWithModification?: number | null;
|
|
30
|
+
/**
|
|
31
|
+
* Rate of sales that have been modified
|
|
32
|
+
* @type {number}
|
|
33
|
+
* @memberof UserStatisticLinkAllOfShortTermQoS
|
|
34
|
+
*/
|
|
35
|
+
salesModificationRate?: number | null;
|
|
24
36
|
}
|
|
25
37
|
/**
|
|
26
38
|
* Check if a given object implements the UserStatisticLinkAllOfShortTermQoS interface.
|
|
@@ -30,7 +30,9 @@ function UserStatisticLinkAllOfShortTermQoSFromJSONTyped(json, ignoreDiscriminat
|
|
|
30
30
|
return json;
|
|
31
31
|
}
|
|
32
32
|
return {
|
|
33
|
-
'
|
|
33
|
+
'numberOfSales': json['numberOfSales'],
|
|
34
|
+
'numberOfSalesWithModification': json['numberOfSalesWithModification'],
|
|
35
|
+
'salesModificationRate': json['salesModificationRate'],
|
|
34
36
|
};
|
|
35
37
|
}
|
|
36
38
|
exports.UserStatisticLinkAllOfShortTermQoSFromJSONTyped = UserStatisticLinkAllOfShortTermQoSFromJSONTyped;
|
|
@@ -39,7 +41,9 @@ function UserStatisticLinkAllOfShortTermQoSToJSON(value) {
|
|
|
39
41
|
return value;
|
|
40
42
|
}
|
|
41
43
|
return {
|
|
42
|
-
'
|
|
44
|
+
'numberOfSales': value['numberOfSales'],
|
|
45
|
+
'numberOfSalesWithModification': value['numberOfSalesWithModification'],
|
|
46
|
+
'salesModificationRate': value['salesModificationRate'],
|
|
43
47
|
};
|
|
44
48
|
}
|
|
45
49
|
exports.UserStatisticLinkAllOfShortTermQoSToJSON = UserStatisticLinkAllOfShortTermQoSToJSON;
|