All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alipay.api.domain.CreditRiskInfo Maven / Gradle / Ivy

Go to download

Alipay openapi SDK for Java Copyright © 2018 杭州蚂蚁金服 All rights reserved. 版权所有 (C)杭州蚂蚁金服 http://open.alipay.com

There is a newer version: 4.40.21.ALL
Show newest version
package com.alipay.api.domain;

import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;

/**
 * 用户信用风险信息
 *
 * @author auto create
 * @since 1.0, 2022-05-26 14:02:49
 */
public class CreditRiskInfo extends AlipayObject {

	private static final long serialVersionUID = 5311982363359594218L;

	/**
	 * 查询失败的情况下,是否可以通过重试解决。true 表示可以适当重试一定次数;false 表示有明确的失败原因,无需重试,
	 */
	@ApiField("can_retry")
	private Boolean canRetry;

	/**
	 * 用户信用数据查询状态
	 */
	@ApiField("code")
	private String code;

	/**
	 * 用户信用风险信息,如:租物场景风险等级、履约历史等级、共租行为等级
	 */
	@ApiField("data")
	private String data;

	public Boolean getCanRetry() {
		return this.canRetry;
	}
	public void setCanRetry(Boolean canRetry) {
		this.canRetry = canRetry;
	}

	public String getCode() {
		return this.code;
	}
	public void setCode(String code) {
		this.code = code;
	}

	public String getData() {
		return this.data;
	}
	public void setData(String data) {
		this.data = data;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy