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