com.antgroup.antchain.openapi.deps.models.QueryBuildpackFindbyappsvRequest 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 QueryBuildpackFindbyappsvRequest extends TeaModel {
@NameInMap("auth_token")
public String authToken;
@NameInMap("tenant")
public String tenant;
// appIds
@NameInMap("app_ids")
public java.util.List appIds;
// workspaceId
@NameInMap("workspace_id")
public String workspaceId;
public static QueryBuildpackFindbyappsvRequest build(java.util.Map map) throws Exception {
QueryBuildpackFindbyappsvRequest self = new QueryBuildpackFindbyappsvRequest();
return TeaModel.build(map, self);
}
public QueryBuildpackFindbyappsvRequest setAuthToken(String authToken) {
this.authToken = authToken;
return this;
}
public String getAuthToken() {
return this.authToken;
}
public QueryBuildpackFindbyappsvRequest setTenant(String tenant) {
this.tenant = tenant;
return this;
}
public String getTenant() {
return this.tenant;
}
public QueryBuildpackFindbyappsvRequest setAppIds(java.util.List appIds) {
this.appIds = appIds;
return this;
}
public java.util.List getAppIds() {
return this.appIds;
}
public QueryBuildpackFindbyappsvRequest setWorkspaceId(String workspaceId) {
this.workspaceId = workspaceId;
return this;
}
public String getWorkspaceId() {
return this.workspaceId;
}
}