NewGaoKaoApi/PaymentSDK/AliPay/Response/ZhimaCreditEpScoreGetRespon...

36 lines
1.2 KiB
C#
Raw Permalink 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>
/// ZhimaCreditEpScoreGetResponse.
/// </summary>
public class ZhimaCreditEpScoreGetResponse : AopResponse
{
/// <summary>
/// 芝麻信用对于每一次请求返回的业务号。后续可以通过此业务号进行对账
/// </summary>
[XmlElement("biz_no")]
public string BizNo { get; set; }
/// <summary>
/// 企业评分的打分时间格式为yyyyMMdd
/// </summary>
[XmlElement("eval_date")]
public string EvalDate { get; set; }
/// <summary>
/// 该企业无企业信用评分的原因。枚举值: STATUS_UNNORMAL企业状态异常NOT_JURIDICAL_ENTITY非法人实体USER_CLOSED用户已经关闭CAN_NOT_GET_INFO无法查询到信息
/// </summary>
[XmlElement("reason")]
public string Reason { get; set; }
/// <summary>
/// 被查询企业的芝麻信用评分,分值在[1000,2000]之间。如果无分则返回N/A。
/// </summary>
[XmlElement("zm_score")]
public string ZmScore { get; set; }
}
}