【发布时间】:2019-07-12 23:04:41
【问题描述】:
我正在使用带有 C# .NET SDK 的 eBay 交易 API
我创建了一个ReturnPolicyType
ReturnPolicyType policy=new ReturnPolicyType();
我设置了策略属性,除了补货费外,一切似乎都正常
policy.RestockingFeeValue = "Percent_15";
还有:
policy.RestockingFeeValueOption = "Percent_15";
我也试过“15%”而不是“Percent_15” 但他们都没有在listing上显示restocking fee
我也在 eBay 的开发者论坛上问过这个问题,但他们的活动相当空缺。
我的完整退货政策代码如下
ReturnPolicyType policy=new ReturnPolicyType();
policy.Refund="MoneyBack";
policy.ReturnsWithinOption="Days_30";
policy.ShippingCostPaidBy = "Buyer";
policy.RestockingFeeValue = "15%";
policy.RestockingFeeValueOption = "Percent_15";
policy.Description = "Returns are welcome on all items other than those sold on an 'AS - IS' basis. Buyers returning items shipped outside of the US will be responsible for all customs fees as well. Please read and fully understand the terms of our policy in advance if you wish to request a return.";
policy.ReturnsAcceptedOption="ReturnsAccepted";
policy.ShippingCostPaidByOption="Buyer";
退货政策的其余部分按预期显示在列表中
【问题讨论】: