com.omertron.imdbapi.model.ImdbSearchResult 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 com.omertron.imdbapi.search.SearchObject;
import java.util.Collections;
import java.util.List;
public class ImdbSearchResult extends AbstractJsonMapping {
@JsonProperty("label")
private String label = "";
@JsonProperty("list")
private List searchObject = Collections.emptyList();
public String getLabel() {
return label;
}
public void setLabel(String label) {
this.label = label;
}
public List getSearchObject() {
return searchObject;
}
public void setSearchObject(List searchObject) {
this.searchObject = searchObject;
}
}
© 2015 - 2026 Weber Informatics LLC | Privacy Policy