com.lukaspradel.steamapi.data.json.ownedgames.Response Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of steam-web-api Show documentation
Show all versions of steam-web-api Show documentation
A library to provide access to the data available from Valve's Steam API
package com.lukaspradel.steamapi.data.json.ownedgames;
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({
"game_count",
"games"
})
public class Response {
/**
*
*/
@JsonProperty("game_count")
private Integer gameCount;
/**
*
*/
@JsonProperty("games")
private List games = new ArrayList();
@JsonIgnore
private Map additionalProperties = new HashMap();
/**
*
* @return
* The gameCount
*/
@JsonProperty("game_count")
public Integer getGameCount() {
return gameCount;
}
/**
*
* @param gameCount
* The game_count
*/
@JsonProperty("game_count")
public void setGameCount(Integer gameCount) {
this.gameCount = gameCount;
}
public Response withGameCount(Integer gameCount) {
this.gameCount = gameCount;
return this;
}
/**
*
* @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;
}
@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(gameCount).append(games).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(gameCount, rhs.gameCount).append(games, rhs.games).append(additionalProperties, rhs.additionalProperties).isEquals();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy