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