_Session.js 566 B

12345678910111213141516171819202122232425
  1. export const _Session = {
  2. "className": "_Session",
  3. "fields": {
  4. "sessionToken": {
  5. "type": "String"
  6. },
  7. "expiresAt": {
  8. "type": "String"
  9. },
  10. "installationId": {
  11. "type": "String"
  12. },
  13. "user": {
  14. "type": "Pointer",
  15. "targetClass":"_User",
  16. "required": false
  17. },
  18. "createdWith": {
  19. "type": "Pointer",
  20. "targetClass":"_User",
  21. "required": false
  22. }
  23. }
  24. }
  25. module.exports._Session = _Session