com.seeq.model.UnitsOfMeasureItemV1 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;
/**
* A list of pairs of UOM strings mapping the input UOM to canonical UOM
*/
@Schema(description = "A list of pairs of UOM strings mapping the input UOM to canonical UOM")
public class UnitsOfMeasureItemV1 {
@JsonProperty("canonicalUom")
private String canonicalUom = null;
@JsonProperty("input")
private String input = null;
public UnitsOfMeasureItemV1 canonicalUom(String canonicalUom) {
this.canonicalUom = canonicalUom;
return this;
}
/**
* The canonical unit of measure string, if the input was parsable, otherwise null
* @return canonicalUom
**/
@Schema(description = "The canonical unit of measure string, if the input was parsable, otherwise null")
public String getCanonicalUom() {
return canonicalUom;
}
public void setCanonicalUom(String canonicalUom) {
this.canonicalUom = canonicalUom;
}
public UnitsOfMeasureItemV1 input(String input) {
this.input = input;
return this;
}
/**
* The unit of measure string that was input
* @return input
**/
@Schema(description = "The unit of measure string that was input")
public String getInput() {
return input;
}
public void setInput(String input) {
this.input = input;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
UnitsOfMeasureItemV1 unitsOfMeasureItemV1 = (UnitsOfMeasureItemV1) o;
return Objects.equals(this.canonicalUom, unitsOfMeasureItemV1.canonicalUom) &&
Objects.equals(this.input, unitsOfMeasureItemV1.input);
}
@Override
public int hashCode() {
return Objects.hash(canonicalUom, input);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class UnitsOfMeasureItemV1 {\n");
sb.append(" canonicalUom: ").append(toIndentedString(canonicalUom)).append("\n");
sb.append(" input: ").append(toIndentedString(input)).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 ");
}
}