using System; using System.Xml.Serialization; using System.Collections.Generic; using Aop.Api.Domain; namespace Aop.Api.Response { /// /// AlipayEbppBillSearchResponse. /// public class AlipayEbppBillSearchResponse : AopResponse { /// /// 已经缓存的的key /// [XmlElement("cachekey")] public string Cachekey { get; set; } /// /// 实时查询欠费单返回对象 /// [XmlArray("inst_bill_info_list")] [XmlArrayItem("query_inst_bill_info")] public List InstBillInfoList { get; set; } } }