Source: borzoo/user.model.js

  1. import { List } from './list.model';
  2. // @flow
  3. /**
  4. * A Zevere user account.
  5. * @type User
  6. */
  7. export type User = {
  8. /**
  9. * Number of days since this user has joined.
  10. * @type {number}
  11. * @memberof User
  12. */
  13. daysJoined: number,
  14. /**
  15. * First Name of this user.
  16. * @type {string}
  17. * @memberof User
  18. */
  19. firstName: string,
  20. /**
  21. * The user's username.
  22. * @type {string}
  23. * @memberof User
  24. */
  25. id: string,
  26. /**
  27. * The date account was created in UTC format.
  28. *
  29. * __Must be an ISO 8601 date string.__
  30. *
  31. * Example: 2018-11-07
  32. * @see https://en.wikipedia.org/wiki/ISO_8601
  33. * @type {string}
  34. * @memberof User
  35. */
  36. joinedAt: string,
  37. /**
  38. * The user's last name.
  39. * @optional
  40. * @type {string}
  41. * @memberof User
  42. */
  43. lastName?: string,
  44. /**
  45. * The task lists that this user has access to.
  46. * @optional
  47. * @type {List[]}
  48. * @memberof User
  49. */
  50. lists?: List[],
  51. /**
  52. * Authentication token.
  53. * @optional
  54. * @type {string}
  55. * @memberof User
  56. */
  57. token?: string
  58. };