com.seeq.model.PropertyOutputV1 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;
/**
* The list of the item's properties
*/
@Schema(description = "The list of the item's properties")
public class PropertyOutputV1 {
@JsonProperty("href")
private String href = null;
@JsonProperty("name")
private String name = null;
@JsonProperty("statusMessage")
private String statusMessage = null;
@JsonProperty("unitOfMeasure")
private String unitOfMeasure = null;
@JsonProperty("value")
private String value = null;
public PropertyOutputV1 href(String href) {
this.href = href;
return this;
}
/**
* The href that can be used to interact with the property
* @return href
**/
@Schema(required = true, description = "The href that can be used to interact with the property")
public String getHref() {
return href;
}
public void setHref(String href) {
this.href = href;
}
public PropertyOutputV1 name(String name) {
this.name = name;
return this;
}
/**
* The name of this property
* @return name
**/
@Schema(required = true, description = "The name of this property")
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public PropertyOutputV1 statusMessage(String statusMessage) {
this.statusMessage = statusMessage;
return this;
}
/**
* A plain language status message with information about any issues that may have been encountered during an operation
* @return statusMessage
**/
@Schema(description = "A plain language status message with information about any issues that may have been encountered during an operation")
public String getStatusMessage() {
return statusMessage;
}
public void setStatusMessage(String statusMessage) {
this.statusMessage = statusMessage;
}
public PropertyOutputV1 unitOfMeasure(String unitOfMeasure) {
this.unitOfMeasure = unitOfMeasure;
return this;
}
/**
* The unit of measure for this property's value
* @return unitOfMeasure
**/
@Schema(description = "The unit of measure for this property's value")
public String getUnitOfMeasure() {
return unitOfMeasure;
}
public void setUnitOfMeasure(String unitOfMeasure) {
this.unitOfMeasure = unitOfMeasure;
}
public PropertyOutputV1 value(String value) {
this.value = value;
return this;
}
/**
* The value of this property
* @return value
**/
@Schema(description = "The value of this property")
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
PropertyOutputV1 propertyOutputV1 = (PropertyOutputV1) o;
return Objects.equals(this.href, propertyOutputV1.href) &&
Objects.equals(this.name, propertyOutputV1.name) &&
Objects.equals(this.statusMessage, propertyOutputV1.statusMessage) &&
Objects.equals(this.unitOfMeasure, propertyOutputV1.unitOfMeasure) &&
Objects.equals(this.value, propertyOutputV1.value);
}
@Override
public int hashCode() {
return Objects.hash(href, name, statusMessage, unitOfMeasure, value);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class PropertyOutputV1 {\n");
sb.append(" href: ").append(toIndentedString(href)).append("\n");
sb.append(" name: ").append(toIndentedString(name)).append("\n");
sb.append(" statusMessage: ").append(toIndentedString(statusMessage)).append("\n");
sb.append(" unitOfMeasure: ").append(toIndentedString(unitOfMeasure)).append("\n");
sb.append(" value: ").append(toIndentedString(value)).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 ");
}
}