using System; using System.Xml.Serialization; using System.Collections.Generic; using Aop.Api.Domain; namespace Aop.Api.Response { /// /// AlipayDataBillTransferQueryResponse. /// public class AlipayDataBillTransferQueryResponse : AopResponse { /// /// 充值、提现、转账明细记录 /// [XmlArray("detail_list")] [XmlArrayItem("transfer_detail_result")] public List DetailList { get; set; } /// /// 分页号,从1开始 /// [XmlElement("page_no")] public string PageNo { get; set; } /// /// 分页大小1000-2000 /// [XmlElement("page_size")] public string PageSize { get; set; } /// /// 充值、提现、转账明细总数。返回满足查询条件的明细的数量 /// [XmlElement("total_size")] public string TotalSize { get; set; } } }