com.antgroup.antchain.openapi.deps.models.QueryWorkspaceRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-deps Show documentation
Show all versions of openapi-deps Show documentation
Ant Chain deps SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.deps.models;
import com.aliyun.tea.*;
public class QueryWorkspaceRequest extends TeaModel {
@NameInMap("auth_token")
public String authToken;
@NameInMap("tenant")
public String tenant;
// 工作空间状态。输入示例:status.1=CREATED
@NameInMap("status")
public java.util.List status;
public static QueryWorkspaceRequest build(java.util.Map map) throws Exception {
QueryWorkspaceRequest self = new QueryWorkspaceRequest();
return TeaModel.build(map, self);
}
public QueryWorkspaceRequest setAuthToken(String authToken) {
this.authToken = authToken;
return this;
}
public String getAuthToken() {
return this.authToken;
}
public QueryWorkspaceRequest setTenant(String tenant) {
this.tenant = tenant;
return this;
}
public String getTenant() {
return this.tenant;
}
public QueryWorkspaceRequest setStatus(java.util.List status) {
this.status = status;
return this;
}
public java.util.List getStatus() {
return this.status;
}
}