NewGaoKaoApi/PaymentSDK/AliPay/Response/AlipayDataBillSellQueryResp...

39 lines
1021 B
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
using System.Collections.Generic;
using Aop.Api.Domain;
namespace Aop.Api.Response
{
/// <summary>
/// AlipayDataBillSellQueryResponse.
/// </summary>
public class AlipayDataBillSellQueryResponse : AopResponse
{
/// <summary>
/// 交易流水详情
/// </summary>
[XmlArray("detail_list")]
[XmlArrayItem("trade_item_result")]
public List<TradeItemResult> DetailList { get; set; }
/// <summary>
/// 分页号从1开始
/// </summary>
[XmlElement("page_no")]
public string PageNo { get; set; }
/// <summary>
/// 分页大小1000-2000
/// </summary>
[XmlElement("page_size")]
public string PageSize { get; set; }
/// <summary>
/// 账务明细总数。返回满足查询条件的明细的数量
/// </summary>
[XmlElement("total_size")]
public string TotalSize { get; set; }
}
}