com.seeq.model.AssetError 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;
/**
* A list of errors generated when attempting to create or update the tree
*/
@Schema(description = "A list of errors generated when attempting to create or update the tree")
public class AssetError {
@JsonProperty("error")
private String error = null;
@JsonProperty("id")
private UUID id = null;
@JsonProperty("name")
private String name = null;
@JsonProperty("parentName")
private String parentName = null;
public AssetError error(String error) {
this.error = error;
return this;
}
/**
* Get error
* @return error
**/
@Schema(description = "")
public String getError() {
return error;
}
public void setError(String error) {
this.error = error;
}
public AssetError id(UUID id) {
this.id = id;
return this;
}
/**
* Get id
* @return id
**/
@Schema(description = "")
public UUID getId() {
return id;
}
public void setId(UUID id) {
this.id = id;
}
public AssetError name(String name) {
this.name = name;
return this;
}
/**
* Get name
* @return name
**/
@Schema(description = "")
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public AssetError parentName(String parentName) {
this.parentName = parentName;
return this;
}
/**
* Get parentName
* @return parentName
**/
@Schema(description = "")
public String getParentName() {
return parentName;
}
public void setParentName(String parentName) {
this.parentName = parentName;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
AssetError assetError = (AssetError) o;
return Objects.equals(this.error, assetError.error) &&
Objects.equals(this.id, assetError.id) &&
Objects.equals(this.name, assetError.name) &&
Objects.equals(this.parentName, assetError.parentName);
}
@Override
public int hashCode() {
return Objects.hash(error, id, name, parentName);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class AssetError {\n");
sb.append(" error: ").append(toIndentedString(error)).append("\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" name: ").append(toIndentedString(name)).append("\n");
sb.append(" parentName: ").append(toIndentedString(parentName)).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 ");
}
}