com.seeq.model.LabelCategoryOutputV1 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;
import java.util.UUID;
/**
* LabelCategoryOutputV1
*/
public class LabelCategoryOutputV1 {
@JsonProperty("id")
private UUID id = null;
@JsonProperty("isAutocomplete")
private Boolean isAutocomplete = null;
@JsonProperty("name")
private String name = null;
public LabelCategoryOutputV1 id(UUID id) {
this.id = id;
return this;
}
/**
* ID of the label category
* @return id
**/
@Schema(description = "ID of the label category")
public UUID getId() {
return id;
}
public void setId(UUID id) {
this.id = id;
}
public LabelCategoryOutputV1 isAutocomplete(Boolean isAutocomplete) {
this.isAutocomplete = isAutocomplete;
return this;
}
/**
* Get isAutocomplete
* @return isAutocomplete
**/
@Schema(description = "")
public Boolean getIsAutocomplete() {
return isAutocomplete;
}
public void setIsAutocomplete(Boolean isAutocomplete) {
this.isAutocomplete = isAutocomplete;
}
public LabelCategoryOutputV1 name(String name) {
this.name = name;
return this;
}
/**
* Name of the label category
* @return name
**/
@Schema(description = "Name of the label category")
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
LabelCategoryOutputV1 labelCategoryOutputV1 = (LabelCategoryOutputV1) o;
return Objects.equals(this.id, labelCategoryOutputV1.id) &&
Objects.equals(this.isAutocomplete, labelCategoryOutputV1.isAutocomplete) &&
Objects.equals(this.name, labelCategoryOutputV1.name);
}
@Override
public int hashCode() {
return Objects.hash(id, isAutocomplete, name);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class LabelCategoryOutputV1 {\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" isAutocomplete: ").append(toIndentedString(isAutocomplete)).append("\n");
sb.append(" name: ").append(toIndentedString(name)).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 ");
}
}