AlipayTradeOrderSettleQueryResponse.cs 848 B

1234567891011121314151617181920212223242526272829303132
  1. using System;
  2. using System.Xml.Serialization;
  3. using System.Collections.Generic;
  4. using Aop.Api.Domain;
  5. namespace Aop.Api.Response
  6. {
  7. /// <summary>
  8. /// AlipayTradeOrderSettleQueryResponse.
  9. /// </summary>
  10. public class AlipayTradeOrderSettleQueryResponse : AopResponse
  11. {
  12. /// <summary>
  13. /// 分账受理时间
  14. /// </summary>
  15. [XmlElement("operation_dt")]
  16. public string OperationDt { get; set; }
  17. /// <summary>
  18. /// 商户分账请求单号
  19. /// </summary>
  20. [XmlElement("out_request_no")]
  21. public string OutRequestNo { get; set; }
  22. /// <summary>
  23. /// 分账明细
  24. /// </summary>
  25. [XmlArray("royalty_detail_list")]
  26. [XmlArrayItem("royalty_detail")]
  27. public List<RoyaltyDetail> RoyaltyDetailList { get; set; }
  28. }
  29. }