using System.Collections.Generic;
using Newtonsoft.Json;
using Alipay.AopSdk.Core.Domain;
namespace Alipay.AopSdk.Core.Response
{
///
/// AlipayEbppBillSearchResponse.
///
public class AlipayEbppBillSearchResponse : AopResponse
{
///
/// 已经缓存的的key
///
[JsonProperty("cachekey")]
public string Cachekey { get; set; }
///
/// 实时查询欠费单返回对象
///
[JsonProperty("inst_bill_info_list")]
public List InstBillInfoList { get; set; }
}
}