com.aliyun.edas20170801.models.StopApplicationResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of edas20170801 Show documentation
Show all versions of edas20170801 Show documentation
Alibaba Cloud Enterprise Distributed Application Service (20170801) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.edas20170801.models;
import com.aliyun.tea.*;
public class StopApplicationResponseBody extends TeaModel {
/**
* The ID of the change process. You can call the GetChangeOrderInfo operation to query the details about the change process. For more information, see [GetChangeOrderInfo](~~62072~~).
*/
@NameInMap("ChangeOrderId")
public String changeOrderId;
/**
* The HTTP status code that is returned.
*/
@NameInMap("Code")
public Integer code;
/**
* The additional information that is returned.
*/
@NameInMap("Message")
public String message;
/**
* The ID of the request.
*/
@NameInMap("RequestId")
public String requestId;
public static StopApplicationResponseBody build(java.util.Map map) throws Exception {
StopApplicationResponseBody self = new StopApplicationResponseBody();
return TeaModel.build(map, self);
}
public StopApplicationResponseBody setChangeOrderId(String changeOrderId) {
this.changeOrderId = changeOrderId;
return this;
}
public String getChangeOrderId() {
return this.changeOrderId;
}
public StopApplicationResponseBody setCode(Integer code) {
this.code = code;
return this;
}
public Integer getCode() {
return this.code;
}
public StopApplicationResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public StopApplicationResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
}