com.antgroup.antchain.openapi.riskplus.models.OutParams 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 OutParams extends TeaModel {
// 输出参数
@NameInMap("name")
@Validation(required = true)
public String name;
// 参数描述
@NameInMap("desc")
@Validation(required = true)
public String desc;
// 参数值
@NameInMap("value")
@Validation(required = true)
public String value;
public static OutParams build(java.util.Map map) throws Exception {
OutParams self = new OutParams();
return TeaModel.build(map, self);
}
public OutParams setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public OutParams setDesc(String desc) {
this.desc = desc;
return this;
}
public String getDesc() {
return this.desc;
}
public OutParams setValue(String value) {
this.value = value;
return this;
}
public String getValue() {
return this.value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy