package de.bisquallisoft.twitch.json.stream; import com.fasterxml.jackson.annotation.*; import javax.annotation.Generated; import java.util.HashMap; import java.util.Map; @JsonInclude(JsonInclude.Include.NON_NULL) @Generated("org.jsonschema2pojo") @JsonPropertyOrder({ "self", "next" }) public class _links { @JsonProperty("self") private String self; @JsonProperty("next") private String next; private Map<String, Object> additionalProperties = new HashMap<String, Object>(); @JsonProperty("self") public String getSelf() { return self; } @JsonProperty("self") public void setSelf(String self) { this.self = self; } @JsonProperty("next") public String getNext() { return next; } @JsonProperty("next") public void setNext(String next) { this.next = next; } @JsonAnyGetter public Map<String, Object> getAdditionalProperties() { return this.additionalProperties; } @JsonAnySetter public void setAdditionalProperty(String name, Object value) { this.additionalProperties.put(name, value); } }