com.antgroup.antchain.openapi.deps.models.QueryBuildpackSupportcoderepoRequest 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 QueryBuildpackSupportcoderepoRequest extends TeaModel {
@NameInMap("auth_token")
public String authToken;
@NameInMap("tenant")
public String tenant;
// techstackId
@NameInMap("techstack_id")
public Long techstackId;
public static QueryBuildpackSupportcoderepoRequest build(java.util.Map map) throws Exception {
QueryBuildpackSupportcoderepoRequest self = new QueryBuildpackSupportcoderepoRequest();
return TeaModel.build(map, self);
}
public QueryBuildpackSupportcoderepoRequest setAuthToken(String authToken) {
this.authToken = authToken;
return this;
}
public String getAuthToken() {
return this.authToken;
}
public QueryBuildpackSupportcoderepoRequest setTenant(String tenant) {
this.tenant = tenant;
return this;
}
public String getTenant() {
return this.tenant;
}
public QueryBuildpackSupportcoderepoRequest setTechstackId(Long techstackId) {
this.techstackId = techstackId;
return this;
}
public Long getTechstackId() {
return this.techstackId;
}
}