Guest User

Untitled

a guest
Jan 11th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. {
  2. "_id" : "test1",
  3. "title" : "test1",
  4. "description" : "Adam's Api Root",
  5. "versions" : [
  6. "version 1",
  7. "version 2"
  8. ],
  9. "max_content_length" : 50000
  10. }
  11.  
  12. ApiRootDocument apiRoot = apiRootsRepository.findById(id);
  13.  
  14. {
  15. "title": "test1",
  16. "description": "Adam's Api Root",
  17. "versions": [
  18. "version 1",
  19. "version 2"
  20. ],
  21. "max_content_length": 0
  22. }
  23.  
  24. @Expose
  25. @SerializedName("max_content_length")
  26. private int maxContentLength;
Add Comment
Please, Sign In to add comment