weiboclient4j.model.SearchSuggestionAppResult 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 org.codehaus.jackson.type.TypeReference;
import java.util.List;
/**
* @author Hover Ruan
*/
@JsonIgnoreProperties(ignoreUnknown = true)
public class SearchSuggestionAppResult {
public static final TypeReference> TYPE_SEARCH_SUGGESTION_APP_RESULT_LIST =
new TypeReference>() {
};
private String appsName;
private int membersCount;
public String getAppsName() {
return appsName;
}
public void setAppsName(String appsName) {
this.appsName = appsName;
}
public int getMembersCount() {
return membersCount;
}
public void setMembersCount(int membersCount) {
this.membersCount = membersCount;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy