
com.alipay.api.response.AlipaySecurityRiskDetectResponse 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
baidu push client api with maven
The newest version!
package com.alipay.api.response;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.security.risk.detect response.
*
* @author auto create
* @since 1.0, 2016-03-04 14:55:25
*/
public class AlipaySecurityRiskDetectResponse extends AlipayResponse {
private static final long serialVersionUID = 7592154281477953284L;
/**
* 结果码
*/
@ApiField("risk_code")
private String riskCode;
/**
* 风险等级
*/
@ApiField("risk_level")
private Long riskLevel;
public void setRiskCode(String riskCode) {
this.riskCode = riskCode;
}
public String getRiskCode( ) {
return this.riskCode;
}
public void setRiskLevel(Long riskLevel) {
this.riskLevel = riskLevel;
}
public Long getRiskLevel( ) {
return this.riskLevel;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy