using System; using System.Xml.Serialization; using System.Collections.Generic; using Aop.Api.Domain; namespace Aop.Api.Response { /// /// AlipayEvercallAlertAddResponse. /// public class AlipayEvercallAlertAddResponse : AopResponse { /// /// 预警处理结果 /// [XmlArray("alert_results")] [XmlArrayItem("evercall_alert_result")] public List AlertResults { get; set; } } }