com.antgroup.antchain.openapi.riskplus.models.VariableDetails 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 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