using System; using System.Collections.Generic; using System.Text; namespace AlibabaSDK.Domain { public class FxTradeCreatePreviewDomain { public bool success { get; set; } public string errorCode { get; set; } public string errorMsg { get; set; } /// /// 运费说明的商品列表 /// public List postFeeByDescOfferList { get; set; } /// /// 代销商品列表 /// public List consignOfferList { get; set; } /// /// 不支持跨境宝支付的商品列表 /// public List unsupportedCrossBorderPayOfferList { get; set; } /// /// 订单预览结果,过自动拆单会返回多个记录 /// public List orderPreviewResult { get; set; } } }