com.alipay.api.response.AlipayInsSceneProductAccessApplyResponse 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.domain.InsProduct;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.ins.scene.product.access.apply response.
*
* @author auto create
* @since 1.0, 2024-07-04 15:51:36
*/
public class AlipayInsSceneProductAccessApplyResponse extends AlipayResponse {
private static final long serialVersionUID = 7891964246797728515L;
/**
* true 表示可以准入, false表示不可以准入。
当准入结果为false的时候需要提示用户当前不能购买该产品
*/
@ApiField("is_access")
private Boolean isAccess;
/**
* 产品信息(保险标准查询信息)
*/
@ApiField("product")
private InsProduct product;
/**
* 不准入原因,该原因为统一的风控原因,用于上游日志使用,不能直接提示给用户,建议给用户的提示文案和蚂蚁PD沟通后给出。
该字段在系统异常的情况下为空
*/
@ApiField("reason")
private String reason;
public void setIsAccess(Boolean isAccess) {
this.isAccess = isAccess;
}
public Boolean getIsAccess( ) {
return this.isAccess;
}
public void setProduct(InsProduct product) {
this.product = product;
}
public InsProduct getProduct( ) {
return this.product;
}
public void setReason(String reason) {
this.reason = reason;
}
public String getReason( ) {
return this.reason;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy