weiboclient4j.model.FavoritesItem Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of weiboclient4j Show documentation
Show all versions of weiboclient4j Show documentation
Java library for Sina Weibo
package weiboclient4j.model;
import org.codehaus.jackson.annotate.JsonIgnoreProperties;
import java.util.Date;
import java.util.List;
/**
* @author Hover Ruan
*/
@JsonIgnoreProperties(ignoreUnknown = true)
public class FavoritesItem {
private Status status;
private List tags;
private Date favoritedTime;
public Status getStatus() {
return status;
}
public void setStatus(Status status) {
this.status = status;
}
public List getTags() {
return tags;
}
public void setTags(List tags) {
this.tags = tags;
}
public Date getFavoritedTime() {
return favoritedTime;
}
public void setFavoritedTime(Date favoritedTime) {
this.favoritedTime = favoritedTime;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy