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

com.antgroup.antchain.openapi.riskplus.models.RiskDetail Maven / Gradle / Ivy

There is a newer version: 1.20.2
Show newest version
// 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 - 2024 Weber Informatics LLC | Privacy Policy