com.antgroup.antchain.openapi.rms.models.QueryTraasmetaCellRequest 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 QueryTraasmetaCellRequest extends TeaModel {
// OAuth模式下的授权token
@NameInMap("auth_token")
public String authToken;
// uuid
@NameInMap("uuid")
public String uuid;
// name
@NameInMap("name")
public String name;
//
// 是否是模糊搜索,默认为false
@NameInMap("search")
@Validation(required = true)
public Boolean search;
// tenant_uuid
@NameInMap("tenant_uuid")
public String tenantUuid;
// tenant_name
@NameInMap("tenant_name")
public String tenantName;
// workspace_uuid
@NameInMap("workspace_uuid")
public String workspaceUuid;
// workspace_name
@NameInMap("workspace_name")
public String workspaceName;
public static QueryTraasmetaCellRequest build(java.util.Map map) throws Exception {
QueryTraasmetaCellRequest self = new QueryTraasmetaCellRequest();
return TeaModel.build(map, self);
}
public QueryTraasmetaCellRequest setAuthToken(String authToken) {
this.authToken = authToken;
return this;
}
public String getAuthToken() {
return this.authToken;
}
public QueryTraasmetaCellRequest setUuid(String uuid) {
this.uuid = uuid;
return this;
}
public String getUuid() {
return this.uuid;
}
public QueryTraasmetaCellRequest setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public QueryTraasmetaCellRequest setSearch(Boolean search) {
this.search = search;
return this;
}
public Boolean getSearch() {
return this.search;
}
public QueryTraasmetaCellRequest setTenantUuid(String tenantUuid) {
this.tenantUuid = tenantUuid;
return this;
}
public String getTenantUuid() {
return this.tenantUuid;
}
public QueryTraasmetaCellRequest setTenantName(String tenantName) {
this.tenantName = tenantName;
return this;
}
public String getTenantName() {
return this.tenantName;
}
public QueryTraasmetaCellRequest setWorkspaceUuid(String workspaceUuid) {
this.workspaceUuid = workspaceUuid;
return this;
}
public String getWorkspaceUuid() {
return this.workspaceUuid;
}
public QueryTraasmetaCellRequest setWorkspaceName(String workspaceName) {
this.workspaceName = workspaceName;
return this;
}
public String getWorkspaceName() {
return this.workspaceName;
}
}