Back to project page android-intro.
The source code is released under:
MIT License
If you think the Android project android-intro 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.example.app.api; // w w w . j a v a 2s.co m /** * Created by andy on 3/12/14. */ public class Actor { int id; String login; String gravatar_id; String url; String avatar_url; public int getId() { return id; } public String getLogin() { return login; } public String getGravatarId() { return gravatar_id; } public String getUrl() { return url; } public String getAvatarUrl() { return avatar_url; } }