com.seeq.model.LabelOutputV1 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;
/**
* LabelOutputV1
*/
public class LabelOutputV1 {
@JsonProperty("categoryId")
private UUID categoryId = null;
@JsonProperty("id")
private UUID id = null;
@JsonProperty("name")
private String name = null;
@JsonProperty("parentId")
private UUID parentId = null;
public LabelOutputV1 categoryId(UUID categoryId) {
this.categoryId = categoryId;
return this;
}
/**
* ID of the label category
* @return categoryId
**/
@Schema(description = "ID of the label category")
public UUID getCategoryId() {
return categoryId;
}
public void setCategoryId(UUID categoryId) {
this.categoryId = categoryId;
}
public LabelOutputV1 id(UUID id) {
this.id = id;
return this;
}
/**
* ID of the label
* @return id
**/
@Schema(description = "ID of the label")
public UUID getId() {
return id;
}
public void setId(UUID id) {
this.id = id;
}
public LabelOutputV1 name(String name) {
this.name = name;
return this;
}
/**
* Name of the label
* @return name
**/
@Schema(description = "Name of the label")
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public LabelOutputV1 parentId(UUID parentId) {
this.parentId = parentId;
return this;
}
/**
* If present, the ID of the parent label
* @return parentId
**/
@Schema(description = "If present, the ID of the parent label")
public UUID getParentId() {
return parentId;
}
public void setParentId(UUID parentId) {
this.parentId = parentId;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
LabelOutputV1 labelOutputV1 = (LabelOutputV1) o;
return Objects.equals(this.categoryId, labelOutputV1.categoryId) &&
Objects.equals(this.id, labelOutputV1.id) &&
Objects.equals(this.name, labelOutputV1.name) &&
Objects.equals(this.parentId, labelOutputV1.parentId);
}
@Override
public int hashCode() {
return Objects.hash(categoryId, id, name, parentId);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class LabelOutputV1 {\n");
sb.append(" categoryId: ").append(toIndentedString(categoryId)).append("\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" name: ").append(toIndentedString(name)).append("\n");
sb.append(" parentId: ").append(toIndentedString(parentId)).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 ");
}
}