Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Response/AlipaySecurityRiskRainscoreQueryResponse.cs
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

40 lines
1.5 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System.Collections.Generic;
using Newtonsoft.Json;
using Alipay.AopSdk.Core.Domain;
namespace Alipay.AopSdk.Core.Response
{
/// <summary>
/// AlipaySecurityRiskRainscoreQueryResponse.
/// </summary>
public class AlipaySecurityRiskRainscoreQueryResponse : AopResponse
{
/// <summary>
/// 风险解释即本次风险评分中TOP 3风险因子的代码、名称、解释、风险倍数JSON格式。详情请参考
/// <a href="https://doc.open.alipay.com/doc2/detail.htm?treeId=214&articleId=104588&docType=1">《风险解释与身份标签》</a>
/// </summary>
[JsonProperty("infocode")]
public List<InfoCode> Infocode { get; set; }
/// <summary>
/// 身份标签即本次风险评分中评分主体手机号相关自然人的推测身份例如Scalper_3C3C行业黄牛等。没有与当前风险类型相关的推测身份时身份标签可能为空。详情及申请方式请参考
/// <a href="https://doc.open.alipay.com/doc2/detail.htm?treeId=214&articleId=104588&docType=1#s1">《风险解释及身份标签》</a>
/// </summary>
[JsonProperty("label")]
public List<string> Label { get; set; }
/// <summary>
/// 风险评分,范围为[0,100],评分越高风险越大
/// </summary>
[JsonProperty("score")]
public string Score { get; set; }
/// <summary>
/// 调用订单号
/// </summary>
[JsonProperty("unique_id")]
public string UniqueId { get; set; }
}
}