package com.sabdroidex.data.sickbeard; import com.sabdroidex.utils.json.JSONElement; import com.sabdroidex.utils.json.JSONSetter; import com.sabdroidex.utils.json.impl.JSONType; import java.io.Serializable; import java.util.List; @JSONElement public class QualityDetails implements Serializable { /** * */ private static final long serialVersionUID = 7391523153823901213L; private List<String> archive; private List<String> initial; public List<String> getArchive() { return archive; } @JSONSetter(name = "archive", type=JSONType.LIST) public void setArchive(List<String> archive) { this.archive = archive; } public List<String> getInitial() { return initial; } @JSONSetter(name = "initial", type=JSONType.LIST) public void setInitial(List<String> initial) { this.initial = initial; } }