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; /* www. j a v a2 s . co m*/ /** * Created by andy on 3/12/14. */ public class Event { int id; String type; Actor actor; Repo repo; String created_at; public int getId() { return id; } public String getType() { return type; } public Actor getActor() { return actor; } public Repo getRepo() { return repo; } public String getCreatedAt() { return created_at; } }