com.lukaspradel.steamapi.data.json.getschemaforgame.Game 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.getschemaforgame;
import java.util.HashMap;
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({
"availableGameStats",
"gameName",
"gameVersion"
})
public class Game {
/**
*
*/
@JsonProperty("availableGameStats")
private AvailableGameStats availableGameStats;
/**
*
*/
@JsonProperty("gameName")
private String gameName;
/**
*
*/
@JsonProperty("gameVersion")
private String gameVersion;
@JsonIgnore
private Map additionalProperties = new HashMap();
/**
*
* @return
* The availableGameStats
*/
@JsonProperty("availableGameStats")
public AvailableGameStats getAvailableGameStats() {
return availableGameStats;
}
/**
*
* @param availableGameStats
* The availableGameStats
*/
@JsonProperty("availableGameStats")
public void setAvailableGameStats(AvailableGameStats availableGameStats) {
this.availableGameStats = availableGameStats;
}
public Game withAvailableGameStats(AvailableGameStats availableGameStats) {
this.availableGameStats = availableGameStats;
return this;
}
/**
*
* @return
* The gameName
*/
@JsonProperty("gameName")
public String getGameName() {
return gameName;
}
/**
*
* @param gameName
* The gameName
*/
@JsonProperty("gameName")
public void setGameName(String gameName) {
this.gameName = gameName;
}
public Game withGameName(String gameName) {
this.gameName = gameName;
return this;
}
/**
*
* @return
* The gameVersion
*/
@JsonProperty("gameVersion")
public String getGameVersion() {
return gameVersion;
}
/**
*
* @param gameVersion
* The gameVersion
*/
@JsonProperty("gameVersion")
public void setGameVersion(String gameVersion) {
this.gameVersion = gameVersion;
}
public Game withGameVersion(String gameVersion) {
this.gameVersion = gameVersion;
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 Game withAdditionalProperty(String name, Object value) {
this.additionalProperties.put(name, value);
return this;
}
@Override
public int hashCode() {
return new HashCodeBuilder().append(availableGameStats).append(gameName).append(gameVersion).append(additionalProperties).toHashCode();
}
@Override
public boolean equals(Object other) {
if (other == this) {
return true;
}
if ((other instanceof Game) == false) {
return false;
}
Game rhs = ((Game) other);
return new EqualsBuilder().append(availableGameStats, rhs.availableGameStats).append(gameName, rhs.gameName).append(gameVersion, rhs.gameVersion).append(additionalProperties, rhs.additionalProperties).isEquals();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy