using System; using System.Xml.Serialization; using System.Collections.Generic; using Aop.Api.Domain; namespace Aop.Api.Response { /// /// AlipayEbppRechargeItemUpdateResponse. /// public class AlipayEbppRechargeItemUpdateResponse : AopResponse { /// /// 错误码 /// [XmlElement("error_code")] public string ErrorCode { get; set; } /// /// 错误类型 /// [XmlElement("error_message")] public string ErrorMessage { get; set; } /// /// 返回对象的列表 /// [XmlArray("iterm_infos")] [XmlArrayItem("iterm_info")] public List ItermInfos { get; set; } /// /// 是否成功 /// [XmlElement("success")] public bool Success { get; set; } } }