TradeConfirmFee.cs 1.0 KB

123456789101112131415161718192021222324252627282930
  1. using System;
  2. using System.Xml.Serialization;
  3. namespace Top.Api.Domain
  4. {
  5. /// <summary>
  6. /// TradeConfirmFee Data Structure.
  7. /// </summary>
  8. [Serializable]
  9. public class TradeConfirmFee : TopObject
  10. {
  11. /// <summary>
  12. /// 确认收货的金额(不包含邮费)。精确到2位小数;单位:元。如:200.07,表示:200元7分
  13. /// </summary>
  14. [XmlElement("confirm_fee")]
  15. public string ConfirmFee { get; set; }
  16. /// <summary>
  17. /// 需确认收货的邮费,当不是最后一笔收货或者没有邮费时是0.00。精确到2位小数;单位:元。如:200.07,表示:200元7分
  18. /// </summary>
  19. [XmlElement("confirm_post_fee")]
  20. public string ConfirmPostFee { get; set; }
  21. /// <summary>
  22. /// 是否是最后一笔订单(只对子订单有效,当其他子订单都是交易完成时,返回true,否则false)
  23. /// </summary>
  24. [XmlElement("is_last_order")]
  25. public bool IsLastOrder { get; set; }
  26. }
  27. }