1234567891011121314151617181920212223242526272829303132333435 |
- /**
- * Copyright (c) 2006-2017, JGraph Ltd
- * Copyright (c) 2006-2017, Gaudenz Alder
- */
- DrawioUser = function(id, email, displayName, pictureUrl)
- {
- /**
- * Holds the x-coordinate of the point.
- * @type number
- * @default 0
- */
- this.id = id;
-
- /**
- * Holds the x-coordinate of the point.
- * @type number
- * @default 0
- */
- this.email = email;
-
- /**
- * Holds the x-coordinate of the point.
- * @type number
- * @default 0
- */
- this.displayName = displayName;
-
- /**
- * Holds the x-coordinate of the point.
- * @type number
- * @default 0
- */
- this.pictureUrl = pictureUrl;
- };
|