com.huaweicloud.sdk.iotanalytics.v1.model.ShowTableSchemaRequest Maven / Gradle / Ivy
package com.huaweicloud.sdk.iotanalytics.v1.model;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.Objects;
/**
* Request Object
*/
public class ShowTableSchemaRequest {
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "table_id")
private String tableId;
public ShowTableSchemaRequest withTableId(String tableId) {
this.tableId = tableId;
return this;
}
/**
* 表ID。
* @return tableId
*/
public String getTableId() {
return tableId;
}
public void setTableId(String tableId) {
this.tableId = tableId;
}
@Override
public boolean equals(java.lang.Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
ShowTableSchemaRequest that = (ShowTableSchemaRequest) obj;
return Objects.equals(this.tableId, that.tableId);
}
@Override
public int hashCode() {
return Objects.hash(tableId);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ShowTableSchemaRequest {\n");
sb.append(" tableId: ").append(toIndentedString(tableId)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}