Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Response/AlipaySecurityRiskDetectResponse.cs

22 lines
454 B
C#
Raw Normal View History

2020-10-07 20:25:03 +08:00
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Response
{
/// <summary>
/// AlipaySecurityRiskDetectResponse.
/// </summary>
public class AlipaySecurityRiskDetectResponse : AopResponse
{
/// <summary>
/// 结果码
/// </summary>
[JsonProperty("risk_code")]
public string RiskCode { get; set; }
/// <summary>
/// 风险等级
/// </summary>
[JsonProperty("risk_level")]
public long RiskLevel { get; set; }
}
}