com.seeq.model.DetailedMeterOutputV1 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;
/**
* All metered items that are attributable to the processing of the request.
*/
@Schema(description = "All metered items that are attributable to the processing of the request.")
public class DetailedMeterOutputV1 {
@JsonProperty("count")
private Long count = null;
@JsonProperty("description")
private String description = null;
@JsonProperty("path")
private String path = null;
public DetailedMeterOutputV1 count(Long count) {
this.count = count;
return this;
}
/**
* The number of metered items that have been observed. The value may increase if the request is still in progress, but will never decrease.
* @return count
**/
@Schema(description = "The number of metered items that have been observed. The value may increase if the request is still in progress, but will never decrease.")
public Long getCount() {
return count;
}
public void setCount(Long count) {
this.count = count;
}
public DetailedMeterOutputV1 description(String description) {
this.description = description;
return this;
}
/**
* Human readable description of the facet of the system being monitored.
* @return description
**/
@Schema(description = "Human readable description of the facet of the system being monitored.")
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public DetailedMeterOutputV1 path(String path) {
this.path = path;
return this;
}
/**
* Unique ID for the monitored value.
* @return path
**/
@Schema(description = "Unique ID for the monitored value.")
public String getPath() {
return path;
}
public void setPath(String path) {
this.path = path;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
DetailedMeterOutputV1 detailedMeterOutputV1 = (DetailedMeterOutputV1) o;
return Objects.equals(this.count, detailedMeterOutputV1.count) &&
Objects.equals(this.description, detailedMeterOutputV1.description) &&
Objects.equals(this.path, detailedMeterOutputV1.path);
}
@Override
public int hashCode() {
return Objects.hash(count, description, path);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class DetailedMeterOutputV1 {\n");
sb.append(" count: ").append(toIndentedString(count)).append("\n");
sb.append(" description: ").append(toIndentedString(description)).append("\n");
sb.append(" path: ").append(toIndentedString(path)).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 ");
}
}