com.omertron.imdbapi.model.ImdbText 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;
import java.util.Collections;
import java.util.Map;
public class ImdbText extends AbstractJsonMapping {
@JsonProperty("text")
private String text = "";
@JsonProperty("label")
private String label = "";
@JsonProperty("date")
private Map date = Collections.emptyMap();
public String getLabel() {
return label;
}
public void setLabel(String label) {
this.label = label;
}
public String getText() {
return text;
}
public void setText(String text) {
this.text = text;
}
public Map getDate() {
return date;
}
public void setDate(Map date) {
this.date = date;
}
}
© 2015 - 2026 Weber Informatics LLC | Privacy Policy