using System; using System.Xml.Serialization; using System.Collections.Generic; using Aop.Api.Domain; namespace Aop.Api.Response { /// /// AlipayEcoCplifeBillModifyResponse. /// public class AlipayEcoCplifeBillModifyResponse : AopResponse { /// /// 不允许修改(支付中或者支付完成)的账单明细条目列表 /// [XmlArray("alive_bill_entry_list")] [XmlArrayItem("c_p_alive_bill_entry_set")] public List AliveBillEntryList { get; set; } } }