@be-link/ecommerce-trade-service-node-sdk 0.1.3 → 0.1.4
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.
|
@@ -22,6 +22,16 @@ export declare namespace RosOrderCoreService {
|
|
|
22
22
|
interface IOrderCreateForQuick {
|
|
23
23
|
/** 正向订单ID */
|
|
24
24
|
orderId: string;
|
|
25
|
+
/** 退款类型 */
|
|
26
|
+
refundType: ENUM.ReverseRefundType;
|
|
27
|
+
/** 退款金额 */
|
|
28
|
+
amount: number;
|
|
29
|
+
/** 退款理由 */
|
|
30
|
+
reason: string;
|
|
31
|
+
/** 退款份数 */
|
|
32
|
+
quantity?: number;
|
|
33
|
+
/** 上传的图片/视频 */
|
|
34
|
+
attachmentUrls?: string[];
|
|
25
35
|
}
|
|
26
36
|
}
|
|
27
37
|
namespace Response {
|