using System; using System.Xml.Serialization; using System.Collections.Generic; using Aop.Api.Domain; namespace Aop.Api.Response { /// /// AlipayTradeOrderSettleQueryResponse. /// public class AlipayTradeOrderSettleQueryResponse : AopResponse { /// /// 分账受理时间 /// [XmlElement("operation_dt")] public string OperationDt { get; set; } /// /// 商户分账请求单号 /// [XmlElement("out_request_no")] public string OutRequestNo { get; set; } /// /// 分账明细 /// [XmlArray("royalty_detail_list")] [XmlArrayItem("royalty_detail")] public List RoyaltyDetailList { get; set; } } }