using System.Collections.Generic;
using Newtonsoft.Json;
using Alipay.AopSdk.Core.Domain;
namespace Alipay.AopSdk.Core.Response
{
///
/// MybankFinanceYulibaoTransHistoryQueryResponse.
///
public class MybankFinanceYulibaoTransHistoryQueryResponse : AopResponse
{
///
/// 历史交易记录查询的当前页码
///
[JsonProperty("current_page")]
public long CurrentPage { get; set; }
///
/// 当前查询是否具有下一页的数据,true-有,fasle-没有
///
[JsonProperty("has_next_page")]
public bool HasNextPage { get; set; }
///
/// 历史交易详情信息
///
[JsonProperty("history_trans_detail_infos")]
public List HistoryTransDetailInfos { get; set; }
///
/// 当前查询在不分页情况下的数据总数
///
[JsonProperty("total_item_count")]
public string TotalItemCount { get; set; }
}
}