com.antgroup.antchain.openapi.demo.models.QueryMap Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-demo Show documentation
Show all versions of openapi-demo Show documentation
Ant Chain DEMO SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.demo.models;
import com.aliyun.tea.*;
public class QueryMap extends TeaModel {
// 键值
@NameInMap("name")
@Validation(required = true)
public String name;
// 额外用户信息
@NameInMap("value")
public java.util.List value;
public static QueryMap build(java.util.Map map) throws Exception {
QueryMap self = new QueryMap();
return TeaModel.build(map, self);
}
public QueryMap setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public QueryMap setValue(java.util.List value) {
this.value = value;
return this;
}
public java.util.List getValue() {
return this.value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy