Back to project page octodroid.
The source code is released under:
MIT License
If you think the Android project octodroid listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.rejasupotaro.octodroid.models; //from www . j a v a 2 s . co m import com.google.gson.annotations.SerializedName; import java.util.List; public class SearchResult<T> extends Resource { @SerializedName("total_count") private int totalCount; @SerializedName("incomplete_results") private boolean incompleteResults; @SerializedName("items") private List<T> items; public int getTotalCount() { return totalCount; } public boolean isIncompleteResults() { return incompleteResults; } public List<T> getItems() { return items; } }