Guest User

Untitled

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