DrawioUser.js 475 B

12345678910111213141516171819202122
  1. /**
  2. * Copyright (c) 2006-2017, JGraph Ltd
  3. * Copyright (c) 2006-2017, Gaudenz Alder
  4. */
  5. DrawioUser = function(id, email, displayName, pictureUrl, locale)
  6. {
  7. // Unique ID of the user for the current storage system
  8. this.id = id;
  9. // Email address of the user
  10. this.email = email;
  11. // Display name of the user
  12. this.displayName = displayName;
  13. // URL to an image of the user
  14. this.pictureUrl = pictureUrl;
  15. // country code locale of the user
  16. this.locale = locale;
  17. };