com.aliyun.sdk.service.hbase20170115.models.ConvertClusterResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alibabacloud-hbase20170115 Show documentation
Show all versions of alibabacloud-hbase20170115 Show documentation
Alibaba Cloud HBase (20170115) Async SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.hbase20170115.models;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link ConvertClusterResponseBody} extends {@link TeaModel}
*
* ConvertClusterResponseBody
*/
public class ConvertClusterResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("OrderId")
private Long orderId;
@com.aliyun.core.annotation.NameInMap("RequestId")
private String requestId;
private ConvertClusterResponseBody(Builder builder) {
this.orderId = builder.orderId;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static ConvertClusterResponseBody create() {
return builder().build();
}
/**
* @return orderId
*/
public Long getOrderId() {
return this.orderId;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private Long orderId;
private String requestId;
/**
* OrderId.
*/
public Builder orderId(Long orderId) {
this.orderId = orderId;
return this;
}
/**
* RequestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public ConvertClusterResponseBody build() {
return new ConvertClusterResponseBody(this);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy