All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.lukaspradel.steamapi.data.json.appnews.GetNewsForApp Maven / Gradle / Ivy

There is a newer version: 1.9.0
Show newest version

package com.lukaspradel.steamapi.data.json.appnews;

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({
    "appnews"
})
public class GetNewsForApp {

    /**
     * 
     */
    @JsonProperty("appnews")
    private Appnews appnews;
    @JsonIgnore
    private Map additionalProperties = new HashMap();

    /**
     * 
     * @return
     *     The appnews
     */
    @JsonProperty("appnews")
    public Appnews getAppnews() {
        return appnews;
    }

    /**
     * 
     * @param appnews
     *     The appnews
     */
    @JsonProperty("appnews")
    public void setAppnews(Appnews appnews) {
        this.appnews = appnews;
    }

    public GetNewsForApp withAppnews(Appnews appnews) {
        this.appnews = appnews;
        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 GetNewsForApp withAdditionalProperty(String name, Object value) {
        this.additionalProperties.put(name, value);
        return this;
    }

    @Override
    public int hashCode() {
        return new HashCodeBuilder().append(appnews).append(additionalProperties).toHashCode();
    }

    @Override
    public boolean equals(Object other) {
        if (other == this) {
            return true;
        }
        if ((other instanceof GetNewsForApp) == false) {
            return false;
        }
        GetNewsForApp rhs = ((GetNewsForApp) other);
        return new EqualsBuilder().append(appnews, rhs.appnews).append(additionalProperties, rhs.additionalProperties).isEquals();
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy