com.omertron.imdbapi.model.ImdbSource 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 ImdbSource extends AbstractJsonMapping {
@JsonProperty("logo")
private String logo = "";
@JsonProperty("url")
private String url = "";
@JsonProperty("label")
private String label = "";
public String getLabel() {
return label;
}
public void setLabel(String label) {
this.label = label;
}
public String getLogo() {
return logo;
}
public void setLogo(String logo) {
this.logo = logo;
}
public String getUrl() {
return url;
}
public void setUrl(String url) {
this.url = url;
}
}
© 2015 - 2026 Weber Informatics LLC | Privacy Policy