com.alipay.api.response.ZhimaCreditWatchlistBriefGetResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk-java Show documentation
Show all versions of alipay-sdk-java Show documentation
Alipay openapi SDK for Java
Copyright © 2018 杭州蚂蚁金服
All rights reserved.
版权所有 (C)杭州蚂蚁金服
http://open.alipay.com
package com.alipay.api.response;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: zhima.credit.watchlist.brief.get response.
*
* @author auto create
* @since 1.0, 2024-12-12 10:42:21
*/
public class ZhimaCreditWatchlistBriefGetResponse extends AlipayResponse {
private static final long serialVersionUID = 2779759672276134751L;
/**
* 唯一标示每一次接口调用
*/
@ApiField("biz_no")
private String bizNo;
/**
* 输入用户返回结果:
0 未命中逾期名单
1 命中一类名单,例如用户有一周以内的轻微逾期
2 命中二类名单,例如用户有一周以上中等逾期
3 命中三类名单,例如用户有一个月以上的严重逾期
N/A 无法评估该用户逾期状况,例如未获得用户授权。
*/
@ApiField("level")
private String level;
public void setBizNo(String bizNo) {
this.bizNo = bizNo;
}
public String getBizNo( ) {
return this.bizNo;
}
public void setLevel(String level) {
this.level = level;
}
public String getLevel( ) {
return this.level;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy