com.genesys.internal.statistics.model.StatisticValue Maven / Gradle / Ivy
/*
* Statistics Service API
* Statistics API
*
* OpenAPI spec version: 9.0.000.00.333
*
*
* 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.genesys.internal.statistics.model;
import java.util.Objects;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* StatisticValue
*/
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2017-10-19T09:04:31.815Z")
public class StatisticValue {
@SerializedName("statisticId")
private String statisticId = null;
@SerializedName("timestamp")
private Long timestamp = null;
@SerializedName("value")
private Object value = null;
public StatisticValue statisticId(String statisticId) {
this.statisticId = statisticId;
return this;
}
/**
* Get statisticId
* @return statisticId
**/
@ApiModelProperty(value = "")
public String getStatisticId() {
return statisticId;
}
public void setStatisticId(String statisticId) {
this.statisticId = statisticId;
}
public StatisticValue timestamp(Long timestamp) {
this.timestamp = timestamp;
return this;
}
/**
* Get timestamp
* @return timestamp
**/
@ApiModelProperty(value = "")
public Long getTimestamp() {
return timestamp;
}
public void setTimestamp(Long timestamp) {
this.timestamp = timestamp;
}
public StatisticValue value(Object value) {
this.value = value;
return this;
}
/**
* Get value
* @return value
**/
@ApiModelProperty(value = "")
public Object getValue() {
return value;
}
public void setValue(Object 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;
}
StatisticValue statisticValue = (StatisticValue) o;
return Objects.equals(this.statisticId, statisticValue.statisticId) &&
Objects.equals(this.timestamp, statisticValue.timestamp) &&
Objects.equals(this.value, statisticValue.value);
}
@Override
public int hashCode() {
return Objects.hash(statisticId, timestamp, value);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class StatisticValue {\n");
sb.append(" statisticId: ").append(toIndentedString(statisticId)).append("\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 ");
}
}