Advertisement
Guest User

Untitled

a guest
Nov 26th, 2014
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. public class Guest {
  2.  
  3. private String id;
  4. private List<Profiles> profiles;
  5. ...
  6. }
  7.  
  8. ...
  9. updatedGuest.setProfiles(null);
  10. this.updateGuest(id, updatedGuest)
  11.  
  12.  
  13. @POST(".../guests/{id}")
  14. Guest updateGuest(@Path("id") String externalId, @Body Guest guest);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement