com.seeq.model.ColumnRuleItemPropertyInputV1 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;
/**
* Gets a property from an Item
*/
@Schema(description = "Gets a property from an Item")
public class ColumnRuleItemPropertyInputV1 {
@JsonProperty("columnIndex")
private Integer columnIndex = null;
@JsonProperty("propertyName")
private String propertyName = null;
public ColumnRuleItemPropertyInputV1 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 ColumnRuleItemPropertyInputV1 propertyName(String propertyName) {
this.propertyName = propertyName;
return this;
}
/**
* The property to get from the item
* @return propertyName
**/
@Schema(required = true, description = "The property to get from the item")
public String getPropertyName() {
return propertyName;
}
public void setPropertyName(String propertyName) {
this.propertyName = propertyName;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ColumnRuleItemPropertyInputV1 columnRuleItemPropertyInputV1 = (ColumnRuleItemPropertyInputV1) o;
return Objects.equals(this.columnIndex, columnRuleItemPropertyInputV1.columnIndex) &&
Objects.equals(this.propertyName, columnRuleItemPropertyInputV1.propertyName);
}
@Override
public int hashCode() {
return Objects.hash(columnIndex, propertyName);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ColumnRuleItemPropertyInputV1 {\n");
sb.append(" columnIndex: ").append(toIndentedString(columnIndex)).append("\n");
sb.append(" propertyName: ").append(toIndentedString(propertyName)).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 ");
}
}