com.alipay.api.response.ZhimaCreditScoreGetResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk Show documentation
Show all versions of alipay-sdk Show documentation
alipay-sdk project for Spring Project
The newest version!
package com.alipay.api.response;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: zhima.credit.score.get response.
*
* @author auto create
* @since 1.0, 2017-06-12 14:16:29
*/
public class ZhimaCreditScoreGetResponse extends AlipayResponse {
private static final long serialVersionUID = 5387117434177724935L;
/**
* 芝麻信用对于每一次请求返回的业务号。后续可以通过此业务号进行对账
*/
@ApiField("biz_no")
private String bizNo;
/**
* 用户的芝麻信用评分。分值范围[350,950]。如果用户数据不足,无法评分时,返回字符串"N/A"。
*/
@ApiField("zm_score")
private String zmScore;
public void setBizNo(String bizNo) {
this.bizNo = bizNo;
}
public String getBizNo( ) {
return this.bizNo;
}
public void setZmScore(String zmScore) {
this.zmScore = zmScore;
}
public String getZmScore( ) {
return this.zmScore;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy