using System; using System.Xml.Serialization; using System.Collections.Generic; using Aop.Api.Domain; namespace Aop.Api.Response { /// /// AlipayPcreditHuabeiMerchantBillQueryResponse. /// public class AlipayPcreditHuabeiMerchantBillQueryResponse : AopResponse { /// /// 账单列表 /// [XmlArray("bill_list")] [XmlArrayItem("hb_merchant_bill")] public List BillList { get; set; } /// /// 条目数,最多20000条,多余20000条请细分时间获取 /// [XmlElement("size")] public long Size { get; set; } } }