com.aliyun.dds20151201.models.ModifyNodeSpecResponseBody Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dds20151201.models;
import com.aliyun.tea.*;
public class ModifyNodeSpecResponseBody extends TeaModel {
/**
* The ID of the order.
*
* example:
* 21084641369****
*/
@NameInMap("OrderId")
public String orderId;
/**
* The ID of the request.
*
* example:
* 61B05CCF-EBAB-4BF3-BA67-D77256A721E2
*/
@NameInMap("RequestId")
public String requestId;
public static ModifyNodeSpecResponseBody build(java.util.Map map) throws Exception {
ModifyNodeSpecResponseBody self = new ModifyNodeSpecResponseBody();
return TeaModel.build(map, self);
}
public ModifyNodeSpecResponseBody setOrderId(String orderId) {
this.orderId = orderId;
return this;
}
public String getOrderId() {
return this.orderId;
}
public ModifyNodeSpecResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
}