com.seeq.model.UnitsOfMeasureOutputV1 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 com.seeq.model.UnitsOfMeasureItemV1;
import io.swagger.v3.oas.annotations.media.Schema;
import java.util.ArrayList;
import java.util.List;
/**
* UnitsOfMeasureOutputV1
*/
public class UnitsOfMeasureOutputV1 {
@JsonProperty("unitsOfMeasure")
private List unitsOfMeasure = new ArrayList();
public UnitsOfMeasureOutputV1 unitsOfMeasure(List unitsOfMeasure) {
this.unitsOfMeasure = unitsOfMeasure;
return this;
}
public UnitsOfMeasureOutputV1 addUnitsOfMeasureItem(UnitsOfMeasureItemV1 unitsOfMeasureItem) {
if (this.unitsOfMeasure == null) {
this.unitsOfMeasure = new ArrayList();
}
this.unitsOfMeasure.add(unitsOfMeasureItem);
return this;
}
/**
* A list of pairs of UOM strings mapping the input UOM to canonical UOM
* @return unitsOfMeasure
**/
@Schema(description = "A list of pairs of UOM strings mapping the input UOM to canonical UOM")
public List getUnitsOfMeasure() {
return unitsOfMeasure;
}
public void setUnitsOfMeasure(List unitsOfMeasure) {
this.unitsOfMeasure = unitsOfMeasure;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
UnitsOfMeasureOutputV1 unitsOfMeasureOutputV1 = (UnitsOfMeasureOutputV1) o;
return Objects.equals(this.unitsOfMeasure, unitsOfMeasureOutputV1.unitsOfMeasure);
}
@Override
public int hashCode() {
return Objects.hash(unitsOfMeasure);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class UnitsOfMeasureOutputV1 {\n");
sb.append(" unitsOfMeasure: ").append(toIndentedString(unitsOfMeasure)).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 ");
}
}