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

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

There is a newer version: 1.22.4
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 VariableDetails extends TeaModel {
    // 输出变量名称
    @NameInMap("variable_name")
    @Validation(required = true)
    public String variableName;

    // 输出变量值
    @NameInMap("variable_value")
    @Validation(required = true)
    public String variableValue;

    // 输出变量值类型
    @NameInMap("variable_type")
    @Validation(required = true)
    public String variableType;

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

    public VariableDetails setVariableName(String variableName) {
        this.variableName = variableName;
        return this;
    }
    public String getVariableName() {
        return this.variableName;
    }

    public VariableDetails setVariableValue(String variableValue) {
        this.variableValue = variableValue;
        return this;
    }
    public String getVariableValue() {
        return this.variableValue;
    }

    public VariableDetails setVariableType(String variableType) {
        this.variableType = variableType;
        return this;
    }
    public String getVariableType() {
        return this.variableType;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy