com.antgroup.antchain.openapi.deps.models.RetryrollbackServiceRequest 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 RetryrollbackServiceRequest extends TeaModel {
@NameInMap("auth_token")
public String authToken;
@NameInMap("tenant")
public String tenant;
// id
@NameInMap("id")
@Validation(required = true)
public String id;
// rollback_info
@NameInMap("rollback_info")
@Validation(required = true)
public RollbackInfo rollbackInfo;
// workspace
@NameInMap("workspace")
@Validation(required = true)
public String workspace;
public static RetryrollbackServiceRequest build(java.util.Map map) throws Exception {
RetryrollbackServiceRequest self = new RetryrollbackServiceRequest();
return TeaModel.build(map, self);
}
public RetryrollbackServiceRequest setAuthToken(String authToken) {
this.authToken = authToken;
return this;
}
public String getAuthToken() {
return this.authToken;
}
public RetryrollbackServiceRequest setTenant(String tenant) {
this.tenant = tenant;
return this;
}
public String getTenant() {
return this.tenant;
}
public RetryrollbackServiceRequest setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public RetryrollbackServiceRequest setRollbackInfo(RollbackInfo rollbackInfo) {
this.rollbackInfo = rollbackInfo;
return this;
}
public RollbackInfo getRollbackInfo() {
return this.rollbackInfo;
}
public RetryrollbackServiceRequest setWorkspace(String workspace) {
this.workspace = workspace;
return this;
}
public String getWorkspace() {
return this.workspace;
}
}