com.antgroup.antchain.openapi.rms.models.BatchqueryTraasmetaWorkspaceRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-rms Show documentation
Show all versions of openapi-rms Show documentation
Ant Chain RMS SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.rms.models;
import com.aliyun.tea.*;
public class BatchqueryTraasmetaWorkspaceRequest extends TeaModel {
// OAuth模式下的授权token
@NameInMap("auth_token")
public String authToken;
// uuids
@NameInMap("uuids")
public java.util.List uuids;
// names
@NameInMap("names")
public java.util.List names;
// tenant_uuid
@NameInMap("tenant_uuid")
public String tenantUuid;
// tenant_name
@NameInMap("tenant_name")
public String tenantName;
public static BatchqueryTraasmetaWorkspaceRequest build(java.util.Map map) throws Exception {
BatchqueryTraasmetaWorkspaceRequest self = new BatchqueryTraasmetaWorkspaceRequest();
return TeaModel.build(map, self);
}
public BatchqueryTraasmetaWorkspaceRequest setAuthToken(String authToken) {
this.authToken = authToken;
return this;
}
public String getAuthToken() {
return this.authToken;
}
public BatchqueryTraasmetaWorkspaceRequest setUuids(java.util.List uuids) {
this.uuids = uuids;
return this;
}
public java.util.List getUuids() {
return this.uuids;
}
public BatchqueryTraasmetaWorkspaceRequest setNames(java.util.List names) {
this.names = names;
return this;
}
public java.util.List getNames() {
return this.names;
}
public BatchqueryTraasmetaWorkspaceRequest setTenantUuid(String tenantUuid) {
this.tenantUuid = tenantUuid;
return this;
}
public String getTenantUuid() {
return this.tenantUuid;
}
public BatchqueryTraasmetaWorkspaceRequest setTenantName(String tenantName) {
this.tenantName = tenantName;
return this;
}
public String getTenantName() {
return this.tenantName;
}
}