com.seeq.model.GaugeDatumV1 Maven / Gradle / Ivy
/*
* Seeq REST API
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
*
* OpenAPI spec version: 60.1.3-v202304250417
*
*
* 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.ArrayList;
import java.util.List;
/**
* List of gauges to update
*/
@Schema(description = "List of gauges to update")
public class GaugeDatumV1 {
@JsonProperty("args")
private List args = new ArrayList();
@JsonProperty("currentValue")
private Double currentValue = null;
@JsonProperty("monitor")
private String monitor = null;
public GaugeDatumV1 args(List args) {
this.args = args;
return this;
}
public GaugeDatumV1 addArgsItem(String argsItem) {
if (this.args == null) {
this.args = new ArrayList();
}
this.args.add(argsItem);
return this;
}
/**
* List of arguments to include in the monitor path
* @return args
**/
@Schema(description = "List of arguments to include in the monitor path")
public List getArgs() {
return args;
}
public void setArgs(List args) {
this.args = args;
}
public GaugeDatumV1 currentValue(Double currentValue) {
this.currentValue = currentValue;
return this;
}
/**
* Current value of the gauge.
* @return currentValue
**/
@Schema(required = true, description = "Current value of the gauge.")
public Double getCurrentValue() {
return currentValue;
}
public void setCurrentValue(Double currentValue) {
this.currentValue = currentValue;
}
public GaugeDatumV1 monitor(String monitor) {
this.monitor = monitor;
return this;
}
/**
* Name of the monitor item this data should apply to.
* @return monitor
**/
@Schema(required = true, description = "Name of the monitor item this data should apply to.")
public String getMonitor() {
return monitor;
}
public void setMonitor(String monitor) {
this.monitor = monitor;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
GaugeDatumV1 gaugeDatumV1 = (GaugeDatumV1) o;
return Objects.equals(this.args, gaugeDatumV1.args) &&
Objects.equals(this.currentValue, gaugeDatumV1.currentValue) &&
Objects.equals(this.monitor, gaugeDatumV1.monitor);
}
@Override
public int hashCode() {
return Objects.hash(args, currentValue, monitor);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class GaugeDatumV1 {\n");
sb.append(" args: ").append(toIndentedString(args)).append("\n");
sb.append(" currentValue: ").append(toIndentedString(currentValue)).append("\n");
sb.append(" monitor: ").append(toIndentedString(monitor)).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 ");
}
}