Advertisement
Guest User

Untitled

a guest
Mar 28th, 2017
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.34 KB | None | 0 0
  1. public class RFbResponse {
  2.     @SerializedName("data")
  3.     public RFbData data;
  4. }
  5.  
  6.  
  7. public class RFbData extends ArrayList<RFbItem> {
  8. }
  9.  
  10.  
  11. public class RFbItem {
  12.     @SerializedName("message")
  13.     public String msg;
  14.     @SerializedName("created_time")
  15.     public String timestamp;
  16.     @SerializedName("id")
  17.     public String id;
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement