NewGaoKaoApi/PaymentSDK/AliPay/Response/AlipayPcreditHuabeiMerchant...

27 lines
708 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>
/// AlipayPcreditHuabeiMerchantBillQueryResponse.
/// </summary>
public class AlipayPcreditHuabeiMerchantBillQueryResponse : AopResponse
{
/// <summary>
/// 账单列表
/// </summary>
[XmlArray("bill_list")]
[XmlArrayItem("hb_merchant_bill")]
public List<HbMerchantBill> BillList { get; set; }
/// <summary>
/// 条目数最多20000条多余20000条请细分时间获取
/// </summary>
[XmlElement("size")]
public long Size { get; set; }
}
}