Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Response/ZhimaCreditScoreBriefGetResponse.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

22 lines
760 B
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>
/// ZhimaCreditScoreBriefGetResponse.
/// </summary>
public class ZhimaCreditScoreBriefGetResponse : AopResponse
{
/// <summary>
/// 芝麻信用对于每一次请求返回的业务号。后续可以通过此业务号进行对账
/// </summary>
[JsonProperty("biz_no")]
public string BizNo { get; set; }
/// <summary>
/// 准入判断结果 Y(用户的芝麻分大于等于准入分数)N用户的芝麻分小于准入分数N/A无法评估例如用户未开通芝麻信用,或芝麻采集的信息不足以评估该用户的信用)
/// </summary>
[JsonProperty("is_admittance")]
public string IsAdmittance { get; set; }
}
}