com.aliyun.ess20220222.models.RollbackInstanceRefreshResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ess20220222 Show documentation
Show all versions of ess20220222 Show documentation
Alibaba Cloud Auto Scaling (20220222) SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ess20220222.models;
import com.aliyun.tea.*;
public class RollbackInstanceRefreshResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public RollbackInstanceRefreshResponseBody body;
public static RollbackInstanceRefreshResponse build(java.util.Map map) throws Exception {
RollbackInstanceRefreshResponse self = new RollbackInstanceRefreshResponse();
return TeaModel.build(map, self);
}
public RollbackInstanceRefreshResponse setHeaders(java.util.Map headers) {
this.headers = headers;
return this;
}
public java.util.Map getHeaders() {
return this.headers;
}
public RollbackInstanceRefreshResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public RollbackInstanceRefreshResponse setBody(RollbackInstanceRefreshResponseBody body) {
this.body = body;
return this;
}
public RollbackInstanceRefreshResponseBody getBody() {
return this.body;
}
}