DrawioUser.js 590 B

1234567891011121314151617181920212223242526272829303132333435
  1. /**
  2. * Copyright (c) 2006-2017, JGraph Ltd
  3. * Copyright (c) 2006-2017, Gaudenz Alder
  4. */
  5. DrawioUser = function(id, email, displayName, pictureUrl)
  6. {
  7. /**
  8. * Holds the x-coordinate of the point.
  9. * @type number
  10. * @default 0
  11. */
  12. this.id = id;
  13. /**
  14. * Holds the x-coordinate of the point.
  15. * @type number
  16. * @default 0
  17. */
  18. this.email = email;
  19. /**
  20. * Holds the x-coordinate of the point.
  21. * @type number
  22. * @default 0
  23. */
  24. this.displayName = displayName;
  25. /**
  26. * Holds the x-coordinate of the point.
  27. * @type number
  28. * @default 0
  29. */
  30. this.pictureUrl = pictureUrl;
  31. };