com.lukaspradel.steamapi.data.json.recentlyplayedgames.Response Maven / Gradle / Ivy
package com.lukaspradel.steamapi.data.json.recentlyplayedgames;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import javax.annotation.Generated;
import com.fasterxml.jackson.annotation.JsonAnyGetter;
import com.fasterxml.jackson.annotation.JsonAnySetter;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import org.apache.commons.lang.builder.EqualsBuilder;
import org.apache.commons.lang.builder.HashCodeBuilder;
import org.apache.commons.lang.builder.ToStringBuilder;
@JsonInclude(JsonInclude.Include.NON_NULL)
@Generated("org.jsonschema2pojo")
@JsonPropertyOrder({
"games",
"total_count"
})
public class Response {
/**
*
*/
@JsonProperty("games")
private List games = new ArrayList();
/**
*
*/
@JsonProperty("total_count")
private Integer totalCount;
@JsonIgnore
private Map additionalProperties = new HashMap();
/**
*
* @return
* The games
*/
@JsonProperty("games")
public List getGames() {
return games;
}
/**
*
* @param games
* The games
*/
@JsonProperty("games")
public void setGames(List games) {
this.games = games;
}
public Response withGames(List games) {
this.games = games;
return this;
}
/**
*
* @return
* The totalCount
*/
@JsonProperty("total_count")
public Integer getTotalCount() {
return totalCount;
}
/**
*
* @param totalCount
* The total_count
*/
@JsonProperty("total_count")
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public Response withTotalCount(Integer totalCount) {
this.totalCount = totalCount;
return this;
}
@Override
public String toString() {
return ToStringBuilder.reflectionToString(this);
}
@JsonAnyGetter
public Map getAdditionalProperties() {
return this.additionalProperties;
}
@JsonAnySetter
public void setAdditionalProperty(String name, Object value) {
this.additionalProperties.put(name, value);
}
public Response withAdditionalProperty(String name, Object value) {
this.additionalProperties.put(name, value);
return this;
}
@Override
public int hashCode() {
return new HashCodeBuilder().append(games).append(totalCount).append(additionalProperties).toHashCode();
}
@Override
public boolean equals(Object other) {
if (other == this) {
return true;
}
if ((other instanceof Response) == false) {
return false;
}
Response rhs = ((Response) other);
return new EqualsBuilder().append(games, rhs.games).append(totalCount, rhs.totalCount).append(additionalProperties, rhs.additionalProperties).isEquals();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy