com.seeq.model.ColumnRuleAncestorInputV1 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 an items ancestor. Column type must be UUID
*/
@Schema(description = "Returns an items ancestor. Column type must be UUID")
public class ColumnRuleAncestorInputV1 {
@JsonProperty("columnIndex")
private Integer columnIndex = null;
@JsonProperty("level")
private Integer level = null;
public ColumnRuleAncestorInputV1 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 ColumnRuleAncestorInputV1 level(Integer level) {
this.level = level;
return this;
}
/**
* The number of levels to go up in the tree. Must be >= 1. For example, if columnIndex references a Condition ID and level is 1 then the rule would return the UUID of the asset to which the condition belongs
* @return level
**/
@Schema(required = true, description = "The number of levels to go up in the tree. Must be >= 1. For example, if columnIndex references a Condition ID and level is 1 then the rule would return the UUID of the asset to which the condition belongs")
public Integer getLevel() {
return level;
}
public void setLevel(Integer level) {
this.level = level;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ColumnRuleAncestorInputV1 columnRuleAncestorInputV1 = (ColumnRuleAncestorInputV1) o;
return Objects.equals(this.columnIndex, columnRuleAncestorInputV1.columnIndex) &&
Objects.equals(this.level, columnRuleAncestorInputV1.level);
}
@Override
public int hashCode() {
return Objects.hash(columnIndex, level);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ColumnRuleAncestorInputV1 {\n");
sb.append(" columnIndex: ").append(toIndentedString(columnIndex)).append("\n");
sb.append(" level: ").append(toIndentedString(level)).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 ");
}
}