Back to project page kickflip-android-sdk.
The source code is released under:
Apache License
If you think the Android project kickflip-android-sdk 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 io.kickflip.sdk.api.json; //from w w w . jav a 2 s . com import com.google.api.client.util.Key; import java.util.List; /** * Created by davidbrodsky on 3/11/14. */ public class StreamList extends Response { @Key("streams") private List<Stream> mStreams; @Key("next_page_available") private boolean mNextPageAvailable; @Key("total_items") private int mTotalItems; @Key("page_number") private int mPageNumber; @Key("results_per_page") private int mResultsPerPage; public List<Stream> getStreams() { return mStreams; } public boolean isNextPageAvailable() { return mNextPageAvailable; } public int getTotalItems() { return mTotalItems; } public int getPageNumber() { return mPageNumber; } public int getResultsPerPage() { return mResultsPerPage; } }