com.omertron.imdbapi.wrapper.WrapperChartStarmeter 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.wrapper;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.omertron.imdbapi.model.AbstractJsonMapping;
import com.omertron.imdbapi.model.ImdbChartStarmeter;
import java.util.Collections;
import java.util.List;
/**
* JSON Wrapper class for the response from the API
*
* Not intended for use outside of the API
*
* @author stuart.boston
*/
@JsonIgnoreProperties({"@meta", "exp", "copyright", "@type", "db"})
public class WrapperChartStarmeter extends AbstractJsonMapping {
@JsonProperty("data")
private WrapperChartStarmeter data;
@JsonProperty("list")
private List chartStarmeter = Collections.emptyList();
public WrapperChartStarmeter getData() {
return data;
}
public void setData(WrapperChartStarmeter data) {
this.data = data;
}
public List getChartStarmeter() {
return chartStarmeter;
}
public void setChartStarmeter(List chartStarmeter) {
this.chartStarmeter = chartStarmeter;
}
}
© 2015 - 2026 Weber Informatics LLC | Privacy Policy