Advertisement
Guest User

Untitled

a guest
Feb 11th, 2016
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. class Response<D> {
  2. List<D> data;
  3. }
  4.  
  5. types:
  6. Response:
  7. type: object
  8. properties:
  9. data: object[]
  10.  
  11. body:
  12. type: Response
  13. properties:
  14. data: MyDataType[]
  15.  
  16. types:
  17. Response:
  18. type: object
  19. properties:
  20. data: object
  21. repeat: true
  22.  
  23. body:
  24. type: Response
  25. properties:
  26. data: MyDataType
  27. repeat: true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement