com.antgroup.antchain.openapi.riskplus.models.RiskDetail Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-riskplus Show documentation
Show all versions of openapi-riskplus Show documentation
Ant Chain RISKPLUS SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.riskplus.models;
import com.aliyun.tea.*;
public class RiskDetail extends TeaModel {
// 反欺诈风险数据服务命中规则风险权重
@NameInMap("rule_weight")
@Validation(required = true)
public String ruleWeight;
// 反欺诈风险数据服务命中规则名称
@NameInMap("rule_name")
@Validation(required = true)
public String ruleName;
public static RiskDetail build(java.util.Map map) throws Exception {
RiskDetail self = new RiskDetail();
return TeaModel.build(map, self);
}
public RiskDetail setRuleWeight(String ruleWeight) {
this.ruleWeight = ruleWeight;
return this;
}
public String getRuleWeight() {
return this.ruleWeight;
}
public RiskDetail setRuleName(String ruleName) {
this.ruleName = ruleName;
return this;
}
public String getRuleName() {
return this.ruleName;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy