Guest User

Untitled

a guest
Jun 20th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. //JSON Request body class
  2. public class JSONRecord_Version1 implements JSONRecordInterface{
  3. public String action { get; private set; }
  4. public String entity { get; private set; }
  5.  
  6. public JSONRecordInterface returnStructure(String entity, String action, String recordId) {
  7. this.entity = entity;
  8. this.action = action;
  9. return this;
  10. }
  11. }
Add Comment
Please, Sign In to add comment