using System; using System.Xml.Serialization; namespace Aop.Api.Response { /// /// ZhimaCreditScoreGetResponse. /// public class ZhimaCreditScoreGetResponse : AopResponse { /// /// 芝麻信用对于每一次请求返回的业务号。后续可以通过此业务号进行对账 /// [XmlElement("biz_no")] public string BizNo { get; set; } /// /// 用户的芝麻信用评分。分值范围[350,950]。如果用户数据不足,无法评分时,返回字符串"N/A"。 /// [XmlElement("zm_score")] public string ZmScore { get; set; } } }