Advertisement
Guest User

Untitled

a guest
Sep 21st, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1.  
  2. /* eslint-disable */
  3. /* Collection: Stats */
  4. const statsObj = {
  5. event_id: "xxxx",
  6. club_id: null,
  7. player_id: "xxx",
  8. scout: {
  9. field_goals_attempted: 1,
  10. shots: 5
  11. }
  12. }
  13.  
  14.  
  15. /* Collection: FantasyPointsTable */
  16.  
  17. const fantasyPoints = {
  18. sport_id: "xxx",
  19. points: [{
  20. "name": "field_goals_attempted",
  21. "value": 5,
  22. },
  23. {
  24. "name": "shots",
  25. "value": 10,
  26. }]
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement