Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Response/MybankFinanceYulibaoTransHistoryQueryResponse.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

37 lines
1008 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System.Collections.Generic;
using Newtonsoft.Json;
using Alipay.AopSdk.Core.Domain;
namespace Alipay.AopSdk.Core.Response
{
/// <summary>
/// MybankFinanceYulibaoTransHistoryQueryResponse.
/// </summary>
public class MybankFinanceYulibaoTransHistoryQueryResponse : AopResponse
{
/// <summary>
/// 历史交易记录查询的当前页码
/// </summary>
[JsonProperty("current_page")]
public long CurrentPage { get; set; }
/// <summary>
/// 当前查询是否具有下一页的数据true-有fasle-没有
/// </summary>
[JsonProperty("has_next_page")]
public bool HasNextPage { get; set; }
/// <summary>
/// 历史交易详情信息
/// </summary>
[JsonProperty("history_trans_detail_infos")]
public List<YLBTransDetailInfo> HistoryTransDetailInfos { get; set; }
/// <summary>
/// 当前查询在不分页情况下的数据总数
/// </summary>
[JsonProperty("total_item_count")]
public string TotalItemCount { get; set; }
}
}