com.aliyun.edas20170801.models.RollbackChangeOrderRequest 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 RollbackChangeOrderRequest extends TeaModel {
/**
* The ID of the change process.
*/
@NameInMap("ChangeOrderId")
public String changeOrderId;
public static RollbackChangeOrderRequest build(java.util.Map map) throws Exception {
RollbackChangeOrderRequest self = new RollbackChangeOrderRequest();
return TeaModel.build(map, self);
}
public RollbackChangeOrderRequest setChangeOrderId(String changeOrderId) {
this.changeOrderId = changeOrderId;
return this;
}
public String getChangeOrderId() {
return this.changeOrderId;
}
}