NewGaoKaoApi/PaymentSDK/AliPay/Response/ZhimaCreditScoreBriefGetRes...

24 lines
835 B
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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