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