Advertisement
vmeansdev

Response

Sep 3rd, 2019
372
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.53 KB | None | 0 0
  1. package com.example.model.flickr;
  2.  
  3. import com.google.gson.annotations.SerializedName;
  4.  
  5. public class Response {
  6.  
  7.     @SerializedName("photos")
  8.     private GalleryPage galleryPage;
  9.  
  10.     private String stat;
  11.  
  12.     public GalleryPage getGalleryPage() {
  13.         return galleryPage;
  14.     }
  15.  
  16.     public void setGalleryPage(GalleryPage galleryPage) {
  17.         this.galleryPage = galleryPage;
  18.     }
  19.  
  20.     public String getStat() {
  21.         return stat;
  22.     }
  23.  
  24.     public void setStat(String stat) {
  25.         this.stat = stat;
  26.     }
  27.  
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement