com.alipay.api.response.ZhimaCreditEpCertificationRiskIdentifyResponse 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 java.util.List;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.internal.mapping.ApiListField;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: zhima.credit.ep.certification.risk.identify response.
*
* @author auto create
* @since 1.0, 2024-03-01 16:28:53
*/
public class ZhimaCreditEpCertificationRiskIdentifyResponse extends AlipayResponse {
private static final long serialVersionUID = 6785478773134862183L;
/**
* 认证风险识别结果集合
*/
@ApiListField("risk_identify_result")
@ApiField("string")
private List riskIdentifyResult;
/**
* 空壳企业等级,描述企业空壳程度。
*/
@ApiField("shell_company_level")
private String shellCompanyLevel;
public void setRiskIdentifyResult(List riskIdentifyResult) {
this.riskIdentifyResult = riskIdentifyResult;
}
public List getRiskIdentifyResult( ) {
return this.riskIdentifyResult;
}
public void setShellCompanyLevel(String shellCompanyLevel) {
this.shellCompanyLevel = shellCompanyLevel;
}
public String getShellCompanyLevel( ) {
return this.shellCompanyLevel;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy