Advertisement
Guest User

Untitled

a guest
Jun 20th, 2019
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. Campaign: {
  2. Id: 'Id',
  3. Name: 'String',
  4. ParentId: null || CampaignId of a parent
  5. StartDate: 'Date', //not DateTime
  6. }
  7. Contact: {
  8. Id: 'Id',
  9. FirstName: 'String',
  10. LastName: 'String',
  11. SchooldId: 'schoolId unique to each person'
  12. }
  13.  
  14. CampaignMember: {
  15. Id: 'Id',
  16. CampaignId: 'Id from Campaign',
  17. ContactId: 'Id from Contact',
  18. Attendance__c: 'String one of below
  19. Paid||UnPaid||NoShow||Void||Attended||Registered'
  20. }
  21.  
  22. Contact
  23. Kate Smith
  24.  
  25. Addresses
  26. A-12345
  27.  
  28. Campaign History
  29. Campaign Name Start Date Type Attendance
  30. Spring 2019 1/1/2019 Test Paid
  31. session 1 3/25/2019 Test Void
  32. session 2 4/15/2019 Test No Show
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement