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

46 lines
1.3 KiB
C#
Raw 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 Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Response
{
/// <summary>
/// SsdataDataserviceRiskAntifraudintegrationQueryResponse.
/// </summary>
public class SsdataDataserviceRiskAntifraudintegrationQueryResponse : AopResponse
{
/// <summary>
/// 蚁盾对于每一次请求返回的业务号。后续可以通过此业务号进行对账
/// </summary>
[JsonProperty("biz_no")]
public string BizNo { get; set; }
/// <summary>
/// 欺诈关注清单是否命中yes标识命中no标识未命中
/// </summary>
[JsonProperty("hit")]
public string Hit { get; set; }
/// <summary>
/// 欺诈关注清单的RiskCode列表对应的描述见产品文档
/// </summary>
[JsonProperty("risk_code")]
public string RiskCode { get; set; }
/// <summary>
/// 申请欺诈评分,分数范围是[0,100]的整数,分数越高信息越真实
/// </summary>
[JsonProperty("score")]
public string Score { get; set; }
/// <summary>
/// 用户唯一请求id
/// </summary>
[JsonProperty("unique_id")]
public string UniqueId { get; set; }
/// <summary>
/// <a href="https://doc.open.alipay.com/docs/doc.htm?treeId=272&articleId=105917&docType=1">验证code列表</a>
/// </summary>
[JsonProperty("verify_code")]
public string VerifyCode { get; set; }
}
}