using System.Collections.Generic;
using Newtonsoft.Json;
using Alipay.AopSdk.Core.Domain;
namespace Alipay.AopSdk.Core.Response
{
///
/// AlipayUserAccountSearchResponse.
///
public class AlipayUserAccountSearchResponse : AopResponse
{
///
/// 支付宝用户账务明细信息
///
[JsonProperty("account_records")]
public List AccountRecords { get; set; }
///
/// 总页面数
///
[JsonProperty("total_pages")]
public long TotalPages { get; set; }
///
/// 总记录数
///
[JsonProperty("total_results")]
public long TotalResults { get; set; }
}
}