28 lines
756 B
C#
28 lines
756 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace Alipay.AopSdk.Core.Response
|
|
{
|
|
/// <summary>
|
|
/// SsdataDataserviceRiskAntifraudscoreQueryResponse.
|
|
/// </summary>
|
|
public class SsdataDataserviceRiskAntifraudscoreQueryResponse : AopResponse
|
|
{
|
|
/// <summary>
|
|
/// 蚁盾对于每一次请求返回的业务号。后续可以通过此业务号进行对账
|
|
/// </summary>
|
|
[JsonProperty("biz_no")]
|
|
public string BizNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 申请欺诈评分,分数范围是[0,100]的整数,分数越高信息越真实
|
|
/// </summary>
|
|
[JsonProperty("score")]
|
|
public string Score { get; set; }
|
|
|
|
/// <summary>
|
|
/// 用户唯一请求id
|
|
/// </summary>
|
|
[JsonProperty("unique_id")]
|
|
public string UniqueId { get; set; }
|
|
}
|
|
} |