com.huaweicloud.sdk.apm.v1.model.DiscardInfo Maven / Gradle / Ivy
package com.huaweicloud.sdk.apm.v1.model;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.Objects;
/**
* 丢弃的信息。
*/
public class DiscardInfo {
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "type")
private String type;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "count")
private Integer count;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "totalTime")
private Long totalTime;
public DiscardInfo withType(String type) {
this.type = type;
return this;
}
/**
* 类型。
* @return type
*/
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public DiscardInfo withCount(Integer count) {
this.count = count;
return this;
}
/**
* 数量。
* @return count
*/
public Integer getCount() {
return count;
}
public void setCount(Integer count) {
this.count = count;
}
public DiscardInfo withTotalTime(Long totalTime) {
this.totalTime = totalTime;
return this;
}
/**
* 总时间。
* @return totalTime
*/
public Long getTotalTime() {
return totalTime;
}
public void setTotalTime(Long totalTime) {
this.totalTime = totalTime;
}
@Override
public boolean equals(java.lang.Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
DiscardInfo that = (DiscardInfo) obj;
return Objects.equals(this.type, that.type) && Objects.equals(this.count, that.count)
&& Objects.equals(this.totalTime, that.totalTime);
}
@Override
public int hashCode() {
return Objects.hash(type, count, totalTime);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class DiscardInfo {\n");
sb.append(" type: ").append(toIndentedString(type)).append("\n");
sb.append(" count: ").append(toIndentedString(count)).append("\n");
sb.append(" totalTime: ").append(toIndentedString(totalTime)).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 ");
}
}