Advertisement
Guest User

Untitled

a guest
Dec 13th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.48 KB | None | 0 0
  1. public class Page {
  2.  
  3. @SerializedName("id")
  4. @Expose
  5. public Integer id;
  6. @SerializedName("date")
  7. @Expose
  8. public String date;
  9. @SerializedName("date_gmt")
  10. @Expose
  11. public String dateGmt;
  12. @SerializedName("guid")
  13. @Expose
  14. public Guid guid;
  15. @SerializedName("modified")
  16. @Expose
  17. public String modified;
  18. @SerializedName("modified_gmt")
  19. @Expose
  20. public String modifiedGmt;
  21. @SerializedName("slug")
  22. @Expose
  23. public String slug;
  24. @SerializedName("status")
  25. @Expose
  26. public String status;
  27. @SerializedName("type")
  28. @Expose
  29. public String type;
  30. @SerializedName("link")
  31. @Expose
  32. public String link;
  33. @SerializedName("title")
  34. @Expose
  35. public Title title;
  36. @SerializedName("content")
  37. @Expose
  38. public Content content;
  39. @SerializedName("excerpt")
  40. @Expose
  41. public Excerpt excerpt;
  42. @SerializedName("author")
  43. @Expose
  44. public Integer author;
  45. @SerializedName("featured_media")
  46. @Expose
  47. public Integer featuredMedia;
  48. @SerializedName("comment_status")
  49. @Expose
  50. public String commentStatus;
  51. @SerializedName("ping_status")
  52. @Expose
  53. public String pingStatus;
  54. @SerializedName("sticky")
  55. @Expose
  56. public Boolean sticky;
  57. @SerializedName("template")
  58. @Expose
  59. public String template;
  60. @SerializedName("format")
  61. @Expose
  62. public String format;
  63. @SerializedName("meta")
  64. @Expose
  65. public List<Object> meta = null;
  66. @SerializedName("categories")
  67. @Expose
  68. public List<Integer> categories = null;
  69. @SerializedName("tags")
  70. @Expose
  71. public List<Object> tags = null;
  72. @SerializedName("_links")
  73. @Expose
  74. public Links links;
  75.  
  76. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement