
com.huaweicloud.sdk.functiongraph.v2.model.SlaReportsValue Maven / Gradle / Ivy
package com.huaweicloud.sdk.functiongraph.v2.model;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.Objects;
/** SlaReportsValue */
public class SlaReportsValue {
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "timestamp")
private Integer timestamp;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "value")
private Integer value;
public SlaReportsValue withTimestamp(Integer timestamp) {
this.timestamp = timestamp;
return this;
}
/** 时间戳
*
* @return timestamp */
public Integer getTimestamp() {
return timestamp;
}
public void setTimestamp(Integer timestamp) {
this.timestamp = timestamp;
}
public SlaReportsValue withValue(Integer value) {
this.value = value;
return this;
}
/** 值
*
* @return value */
public Integer getValue() {
return value;
}
public void setValue(Integer value) {
this.value = value;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
SlaReportsValue slaReportsValue = (SlaReportsValue) o;
return Objects.equals(this.timestamp, slaReportsValue.timestamp)
&& Objects.equals(this.value, slaReportsValue.value);
}
@Override
public int hashCode() {
return Objects.hash(timestamp, value);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class SlaReportsValue {\n");
sb.append(" timestamp: ").append(toIndentedString(timestamp)).append("\n");
sb.append(" value: ").append(toIndentedString(value)).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 ");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy