2016-09-06 14:07:11 +00:00
|
|
|
/**
|
2017-02-11 08:29:14 +00:00
|
|
|
* Copyright (c) 2006-2017, JGraph Ltd
|
|
|
|
* Copyright (c) 2006-2017, Gaudenz Alder
|
2016-09-06 14:07:11 +00:00
|
|
|
*/
|
2017-03-24 11:59:37 +00:00
|
|
|
DrawioUser = function(id, email, displayName, pictureUrl, locale)
|
2016-09-06 14:07:11 +00:00
|
|
|
{
|
2017-03-24 11:59:37 +00:00
|
|
|
// Unique ID of the user for the current storage system
|
2016-09-06 14:07:11 +00:00
|
|
|
this.id = id;
|
|
|
|
|
2017-03-24 11:59:37 +00:00
|
|
|
// Email address of the user
|
2016-09-06 14:07:11 +00:00
|
|
|
this.email = email;
|
|
|
|
|
2017-03-24 11:59:37 +00:00
|
|
|
// Display name of the user
|
2016-09-06 14:07:11 +00:00
|
|
|
this.displayName = displayName;
|
|
|
|
|
2017-03-24 11:59:37 +00:00
|
|
|
// URL to an image of the user
|
2016-09-06 14:07:11 +00:00
|
|
|
this.pictureUrl = pictureUrl;
|
2017-03-24 11:59:37 +00:00
|
|
|
|
|
|
|
// country code locale of the user
|
|
|
|
this.locale = locale;
|
2016-09-06 14:07:11 +00:00
|
|
|
};
|