com.seeq.model.MeterDatumV1 Maven / Gradle / Ivy
/*
* Seeq REST API
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
*
* OpenAPI spec version: 63.1.6-v202409101657
*
*
* 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 meters to update
*/
@Schema(description = "List of meters to update")
public class MeterDatumV1 {
@JsonProperty("args")
private List args = new ArrayList();
@JsonProperty("increments")
private Long increments = null;
@JsonProperty("monitor")
private String monitor = null;
public MeterDatumV1 args(List args) {
this.args = args;
return this;
}
public MeterDatumV1 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 MeterDatumV1 increments(Long increments) {
this.increments = increments;
return this;
}
/**
* Number of increments to the meter. Defaults to 1.
* @return increments
**/
@Schema(description = "Number of increments to the meter. Defaults to 1.")
public Long getIncrements() {
return increments;
}
public void setIncrements(Long increments) {
this.increments = increments;
}
public MeterDatumV1 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;
}
MeterDatumV1 meterDatumV1 = (MeterDatumV1) o;
return Objects.equals(this.args, meterDatumV1.args) &&
Objects.equals(this.increments, meterDatumV1.increments) &&
Objects.equals(this.monitor, meterDatumV1.monitor);
}
@Override
public int hashCode() {
return Objects.hash(args, increments, monitor);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class MeterDatumV1 {\n");
sb.append(" args: ").append(toIndentedString(args)).append("\n");
sb.append(" increments: ").append(toIndentedString(increments)).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 ");
}
}