com.seeq.model.ColumnRulePathInputV1 Maven / Gradle / Ivy
/*
* Seeq REST API
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
*
* OpenAPI spec version: 64.3.0-v202405012032
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*/
package com.seeq.model;
import java.util.Objects;
import java.util.Arrays;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;
import io.swagger.v3.oas.annotations.media.Schema;
/**
* Returns a path to the specified item. Column type must be TEXT
*/
@Schema(description = "Returns a path to the specified item. Column type must be TEXT")
public class ColumnRulePathInputV1 {
@JsonProperty("columnIndex")
private Integer columnIndex = null;
@JsonProperty("level")
private Integer level = null;
@JsonProperty("separator")
private String separator = null;
public ColumnRulePathInputV1 columnIndex(Integer columnIndex) {
this.columnIndex = columnIndex;
return this;
}
/**
* The index of the column that references the item. The column index is 1-based
* @return columnIndex
**/
@Schema(required = true, description = "The index of the column that references the item. The column index is 1-based")
public Integer getColumnIndex() {
return columnIndex;
}
public void setColumnIndex(Integer columnIndex) {
this.columnIndex = columnIndex;
}
public ColumnRulePathInputV1 level(Integer level) {
this.level = level;
return this;
}
/**
* The property to get from the item
* @return level
**/
@Schema(required = true, description = "The property to get from the item")
public Integer getLevel() {
return level;
}
public void setLevel(Integer level) {
this.level = level;
}
public ColumnRulePathInputV1 separator(String separator) {
this.separator = separator;
return this;
}
/**
* The index of the column that references the item. The column index is 1-based
* @return separator
**/
@Schema(required = true, description = "The index of the column that references the item. The column index is 1-based")
public String getSeparator() {
return separator;
}
public void setSeparator(String separator) {
this.separator = separator;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ColumnRulePathInputV1 columnRulePathInputV1 = (ColumnRulePathInputV1) o;
return Objects.equals(this.columnIndex, columnRulePathInputV1.columnIndex) &&
Objects.equals(this.level, columnRulePathInputV1.level) &&
Objects.equals(this.separator, columnRulePathInputV1.separator);
}
@Override
public int hashCode() {
return Objects.hash(columnIndex, level, separator);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ColumnRulePathInputV1 {\n");
sb.append(" columnIndex: ").append(toIndentedString(columnIndex)).append("\n");
sb.append(" level: ").append(toIndentedString(level)).append("\n");
sb.append(" separator: ").append(toIndentedString(separator)).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 ");
}
}