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

com.antgroup.antchain.openapi.riskplus.models.RuleDetail 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 RuleDetail extends TeaModel {
    // 规则细节名称
    @NameInMap("name")
    @Validation(required = true)
    public String name;

    // 规则细节值
    @NameInMap("value")
    @Validation(required = true)
    public String value;

    public static RuleDetail build(java.util.Map map) throws Exception {
        RuleDetail self = new RuleDetail();
        return TeaModel.build(map, self);
    }

    public RuleDetail setName(String name) {
        this.name = name;
        return this;
    }
    public String getName() {
        return this.name;
    }

    public RuleDetail setValue(String value) {
        this.value = value;
        return this;
    }
    public String getValue() {
        return this.value;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy