You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
829 B
C#

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