com.seeq.model.DetailedTimerOutputV1 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;
/**
* All timed events that are attributable to the processing of the request.
*/
@Schema(description = "All timed events that are attributable to the processing of the request.")
public class DetailedTimerOutputV1 {
@JsonProperty("count")
private Integer count = null;
@JsonProperty("description")
private String description = null;
@JsonProperty("path")
private String path = null;
@JsonProperty("seconds")
private Double seconds = null;
public DetailedTimerOutputV1 count(Integer count) {
this.count = count;
return this;
}
/**
* Number of occurrences of a timed event. The value may increase if the timed event is still in progress.
* @return count
**/
@Schema(description = "Number of occurrences of a timed event. The value may increase if the timed event is still in progress.")
public Integer getCount() {
return count;
}
public void setCount(Integer count) {
this.count = count;
}
public DetailedTimerOutputV1 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 DetailedTimerOutputV1 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;
}
public DetailedTimerOutputV1 seconds(Double seconds) {
this.seconds = seconds;
return this;
}
/**
* Total duration, in seconds, for all occurrences of a timed event. The value may increase if the timed event is still in progress.
* @return seconds
**/
@Schema(description = "Total duration, in seconds, for all occurrences of a timed event. The value may increase if the timed event is still in progress.")
public Double getSeconds() {
return seconds;
}
public void setSeconds(Double seconds) {
this.seconds = seconds;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
DetailedTimerOutputV1 detailedTimerOutputV1 = (DetailedTimerOutputV1) o;
return Objects.equals(this.count, detailedTimerOutputV1.count) &&
Objects.equals(this.description, detailedTimerOutputV1.description) &&
Objects.equals(this.path, detailedTimerOutputV1.path) &&
Objects.equals(this.seconds, detailedTimerOutputV1.seconds);
}
@Override
public int hashCode() {
return Objects.hash(count, description, path, seconds);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class DetailedTimerOutputV1 {\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(" seconds: ").append(toIndentedString(seconds)).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 ");
}
}