com.aliyun.r_kvstore20150101.models.RenewAdditionalBandwidthResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of r_kvstore20150101 Show documentation
Show all versions of r_kvstore20150101 Show documentation
Alibaba Cloud R-kvstore (20150101) SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.r_kvstore20150101.models;
import com.aliyun.tea.*;
public class RenewAdditionalBandwidthResponseBody extends TeaModel {
/**
* The ID of the order.
*
* example:
* 2084452111111
*/
@NameInMap("OrderId")
public String orderId;
/**
* The ID of the request.
*
* example:
* D622714-AEDD-4609-9167-F5DDD3D1****
*/
@NameInMap("RequestId")
public String requestId;
public static RenewAdditionalBandwidthResponseBody build(java.util.Map map) throws Exception {
RenewAdditionalBandwidthResponseBody self = new RenewAdditionalBandwidthResponseBody();
return TeaModel.build(map, self);
}
public RenewAdditionalBandwidthResponseBody setOrderId(String orderId) {
this.orderId = orderId;
return this;
}
public String getOrderId() {
return this.orderId;
}
public RenewAdditionalBandwidthResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy