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; // w ww . ja v a2 s . co m import com.google.gson.annotations.SerializedName; public class Plan extends Resource { @SerializedName("name") private String name; @SerializedName("space") private int space; @SerializedName("private_repos") private int privateRepos; @SerializedName("collaborators") private int collaborators; }