com.antgroup.antchain.openapi.deps.models.RetryBgreleaseArrangementRequest 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 RetryBgreleaseArrangementRequest extends TeaModel {
@NameInMap("auth_token")
public String authToken;
@NameInMap("tenant")
public String tenant;
// 发布概览ID
@NameInMap("arrangement_id")
@Validation(required = true)
public String arrangementId;
// 发布单
@NameInMap("plan_id")
@Validation(required = true)
public String planId;
// workspace
@NameInMap("workspace")
@Validation(required = true)
public String workspace;
public static RetryBgreleaseArrangementRequest build(java.util.Map map) throws Exception {
RetryBgreleaseArrangementRequest self = new RetryBgreleaseArrangementRequest();
return TeaModel.build(map, self);
}
public RetryBgreleaseArrangementRequest setAuthToken(String authToken) {
this.authToken = authToken;
return this;
}
public String getAuthToken() {
return this.authToken;
}
public RetryBgreleaseArrangementRequest setTenant(String tenant) {
this.tenant = tenant;
return this;
}
public String getTenant() {
return this.tenant;
}
public RetryBgreleaseArrangementRequest setArrangementId(String arrangementId) {
this.arrangementId = arrangementId;
return this;
}
public String getArrangementId() {
return this.arrangementId;
}
public RetryBgreleaseArrangementRequest setPlanId(String planId) {
this.planId = planId;
return this;
}
public String getPlanId() {
return this.planId;
}
public RetryBgreleaseArrangementRequest setWorkspace(String workspace) {
this.workspace = workspace;
return this;
}
public String getWorkspace() {
return this.workspace;
}
}