zhaojs
2023-09-15 fc13938ff90213060532d99a600dea4a84456885
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
using AlibabaSDK.Api;
using AlibabaSDK.Domain;
using System;
using System.Collections.Generic;
using System.Text;
 
namespace AlibabaSDK.Response
{
    public class AlibabaTradeCreatePreviewResponse : AlibabaApiResponse
    {
        /// <summary>
        /// 运费说明的商品列表
        /// </summary>
        public List<long> postFeeByDescOfferList { get; set; }
        /// <summary>
        /// 代销商品列表
        /// </summary>
        public List<long> consignOfferList { get; set; }
        /// <summary>
        /// 不支持跨境宝支付的商品列表
        /// </summary>
        public List<long> unsupportedCrossBorderPayOfferList { get; set; }
        /// <summary>
        /// 订单预览结果,过自动拆单会返回多个记录
        /// </summary>
        public List<OrderPreviewResuslt> orderPreviewResuslt { get; set; }
 
    }
}