Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. public class Response {
  2. public String status;
  3. public String body;
  4. public Map<String, String> headers;
  5.  
  6. public Response(String status, String body, Map<String,String> headers) {
  7. this.status = status;
  8. this.body = body;
  9. this.headers = headers;
  10. }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement