com.lukaspradel.steamapi.data.json.getschemaforgame.Achievement 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({
"defaultvalue",
"description",
"displayName",
"hidden",
"icon",
"icongray",
"name"
})
public class Achievement {
/**
*
*/
@JsonProperty("defaultvalue")
private Integer defaultvalue;
/**
*
*/
@JsonProperty("description")
private String description;
/**
*
*/
@JsonProperty("displayName")
private String displayName;
/**
*
*/
@JsonProperty("hidden")
private Integer hidden;
/**
*
*/
@JsonProperty("icon")
private String icon;
/**
*
*/
@JsonProperty("icongray")
private String icongray;
/**
*
*/
@JsonProperty("name")
private String name;
@JsonIgnore
private Map additionalProperties = new HashMap();
/**
*
* @return
* The defaultvalue
*/
@JsonProperty("defaultvalue")
public Integer getDefaultvalue() {
return defaultvalue;
}
/**
*
* @param defaultvalue
* The defaultvalue
*/
@JsonProperty("defaultvalue")
public void setDefaultvalue(Integer defaultvalue) {
this.defaultvalue = defaultvalue;
}
public Achievement withDefaultvalue(Integer defaultvalue) {
this.defaultvalue = defaultvalue;
return this;
}
/**
*
* @return
* The description
*/
@JsonProperty("description")
public String getDescription() {
return description;
}
/**
*
* @param description
* The description
*/
@JsonProperty("description")
public void setDescription(String description) {
this.description = description;
}
public Achievement withDescription(String description) {
this.description = description;
return this;
}
/**
*
* @return
* The displayName
*/
@JsonProperty("displayName")
public String getDisplayName() {
return displayName;
}
/**
*
* @param displayName
* The displayName
*/
@JsonProperty("displayName")
public void setDisplayName(String displayName) {
this.displayName = displayName;
}
public Achievement withDisplayName(String displayName) {
this.displayName = displayName;
return this;
}
/**
*
* @return
* The hidden
*/
@JsonProperty("hidden")
public Integer getHidden() {
return hidden;
}
/**
*
* @param hidden
* The hidden
*/
@JsonProperty("hidden")
public void setHidden(Integer hidden) {
this.hidden = hidden;
}
public Achievement withHidden(Integer hidden) {
this.hidden = hidden;
return this;
}
/**
*
* @return
* The icon
*/
@JsonProperty("icon")
public String getIcon() {
return icon;
}
/**
*
* @param icon
* The icon
*/
@JsonProperty("icon")
public void setIcon(String icon) {
this.icon = icon;
}
public Achievement withIcon(String icon) {
this.icon = icon;
return this;
}
/**
*
* @return
* The icongray
*/
@JsonProperty("icongray")
public String getIcongray() {
return icongray;
}
/**
*
* @param icongray
* The icongray
*/
@JsonProperty("icongray")
public void setIcongray(String icongray) {
this.icongray = icongray;
}
public Achievement withIcongray(String icongray) {
this.icongray = icongray;
return this;
}
/**
*
* @return
* The name
*/
@JsonProperty("name")
public String getName() {
return name;
}
/**
*
* @param name
* The name
*/
@JsonProperty("name")
public void setName(String name) {
this.name = name;
}
public Achievement withName(String name) {
this.name = name;
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 Achievement withAdditionalProperty(String name, Object value) {
this.additionalProperties.put(name, value);
return this;
}
@Override
public int hashCode() {
return new HashCodeBuilder().append(defaultvalue).append(description).append(displayName).append(hidden).append(icon).append(icongray).append(name).append(additionalProperties).toHashCode();
}
@Override
public boolean equals(Object other) {
if (other == this) {
return true;
}
if ((other instanceof Achievement) == false) {
return false;
}
Achievement rhs = ((Achievement) other);
return new EqualsBuilder().append(defaultvalue, rhs.defaultvalue).append(description, rhs.description).append(displayName, rhs.displayName).append(hidden, rhs.hidden).append(icon, rhs.icon).append(icongray, rhs.icongray).append(name, rhs.name).append(additionalProperties, rhs.additionalProperties).isEquals();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy