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

net.kender.MCutils.players.Server.Motd Maven / Gradle / Ivy

There is a newer version: 1.0.0
Show newest version

package net.kender.MCutils.players.Server;

import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;

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;

@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonPropertyOrder({
    "raw",
    "clean",
    "html"
})

public class Motd {

    @JsonProperty("raw")
    private List raw;
    @JsonProperty("clean")
    private List clean;
    @JsonProperty("html")
    private List html;
    @JsonIgnore
    private Map additionalProperties = new LinkedHashMap();

    @JsonProperty("raw")
    public List getRaw() {
        return raw;
    }

    @JsonProperty("raw")
    public void setRaw(List raw) {
        this.raw = raw;
    }

    @JsonProperty("clean")
    public List getClean() {
        return clean;
    }

    @JsonProperty("clean")
    public void setClean(List clean) {
        this.clean = clean;
    }

    @JsonProperty("html")
    public List getHtml() {
        return html;
    }

    @JsonProperty("html")
    public void setHtml(List html) {
        this.html = html;
    }

    @JsonAnyGetter
    public Map getAdditionalProperties() {
        return this.additionalProperties;
    }

    @JsonAnySetter
    public void setAdditionalProperty(String name, Object value) {
        this.additionalProperties.put(name, value);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy