com.omertron.imdbapi.model.ImdbSpoiler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api-imdb Show documentation
Show all versions of api-imdb Show documentation
API for the mobile JSON API of IMDB
package com.omertron.imdbapi.model;
import com.fasterxml.jackson.annotation.JsonProperty;
public class ImdbSpoiler extends AbstractJsonMapping {
@JsonProperty("spoiler")
private String spoiler;
@JsonProperty("text")
private String text;
@JsonProperty("type")
private String type;
public ImdbSpoiler() {
this("", "", "");
}
public ImdbSpoiler(String spoiler, String text, String type) {
this.spoiler = spoiler;
this.text = text;
this.type = type;
}
public String getSpoiler() {
return spoiler;
}
public void setSpoiler(String spoiler) {
this.spoiler = spoiler;
}
public String getText() {
return text;
}
public void setText(String text) {
this.text = text;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
}
© 2015 - 2026 Weber Informatics LLC | Privacy Policy