using System; using System.Xml.Serialization; namespace Aop.Api.Response { /// /// AlipayPromorulecenterRuleAnalyzeResponse. /// public class AlipayPromorulecenterRuleAnalyzeResponse : AopResponse { /// /// 未通过条件描述信息 /// [XmlElement("fail_condition_msg")] public string FailConditionMsg { get; set; } /// /// 未通过的条件 /// [XmlElement("fail_condition_name")] public string FailConditionName { get; set; } /// /// 结果码 /// [XmlElement("result_code")] public string ResultCode { get; set; } /// /// 服务调用是否成功 /// [XmlElement("success")] public string Success { get; set; } /// /// 规则是否通过 /// [XmlElement("triggered")] public string Triggered { get; set; } } }