com.aliyun.hbase20170115.models.RenewClusterResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hbase20170115 Show documentation
Show all versions of hbase20170115 Show documentation
Alibaba Cloud ApsaraDB for Hbase (20170115) SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.hbase20170115.models;
import com.aliyun.tea.*;
public class RenewClusterResponseBody extends TeaModel {
@NameInMap("OrderId")
public Long orderId;
@NameInMap("RequestId")
public String requestId;
public static RenewClusterResponseBody build(java.util.Map map) throws Exception {
RenewClusterResponseBody self = new RenewClusterResponseBody();
return TeaModel.build(map, self);
}
public RenewClusterResponseBody setOrderId(Long orderId) {
this.orderId = orderId;
return this;
}
public Long getOrderId() {
return this.orderId;
}
public RenewClusterResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
}