using System; using System.Xml.Serialization; using System.Collections.Generic; using Aop.Api.Domain; namespace Aop.Api.Response { /// /// AlipayUserAccountSearchResponse. /// public class AlipayUserAccountSearchResponse : AopResponse { /// /// 支付宝用户账务明细信息 /// [XmlArray("account_records")] [XmlArrayItem("account_record")] public List AccountRecords { get; set; } /// /// 总页面数 /// [XmlElement("total_pages")] public long TotalPages { get; set; } /// /// 总记录数 /// [XmlElement("total_results")] public long TotalResults { get; set; } } }