com.lukaspradel.steamapi.data.json.appnews.Appnews 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.appnews;
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({
"appid",
"newsitems"
})
public class Appnews {
/**
*
*/
@JsonProperty("appid")
private Integer appid;
/**
*
*/
@JsonProperty("newsitems")
private List newsitems = new ArrayList();
@JsonIgnore
private Map additionalProperties = new HashMap();
/**
*
* @return
* The appid
*/
@JsonProperty("appid")
public Integer getAppid() {
return appid;
}
/**
*
* @param appid
* The appid
*/
@JsonProperty("appid")
public void setAppid(Integer appid) {
this.appid = appid;
}
public Appnews withAppid(Integer appid) {
this.appid = appid;
return this;
}
/**
*
* @return
* The newsitems
*/
@JsonProperty("newsitems")
public List getNewsitems() {
return newsitems;
}
/**
*
* @param newsitems
* The newsitems
*/
@JsonProperty("newsitems")
public void setNewsitems(List newsitems) {
this.newsitems = newsitems;
}
public Appnews withNewsitems(List newsitems) {
this.newsitems = newsitems;
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 Appnews withAdditionalProperty(String name, Object value) {
this.additionalProperties.put(name, value);
return this;
}
@Override
public int hashCode() {
return new HashCodeBuilder().append(appid).append(newsitems).append(additionalProperties).toHashCode();
}
@Override
public boolean equals(Object other) {
if (other == this) {
return true;
}
if ((other instanceof Appnews) == false) {
return false;
}
Appnews rhs = ((Appnews) other);
return new EqualsBuilder().append(appid, rhs.appid).append(newsitems, rhs.newsitems).append(additionalProperties, rhs.additionalProperties).isEquals();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy