You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
689 B
C#

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