UserInfoDTO

DTO to provide information of the a user.

Fields

Type
Name
Description
Optional
Default Value
String  
pk
The pk of the user.
false
 
String  
shortCut
The shortcut of the user.
false
 
String  
fullUserName
The full name of the user.
false
 
String  
email
The primary email of the user.
false
 
String  
userImageData
The base64 representation of the users image.
false
 
rightGroups
List of all assigned right groups.
false
 
deputyOf
Information of the user the current login is representing. May be empty if you a re not logged in as a deputy.
false
 

Example

{
	"pk": "fvvv9802jpn2",
	"shortCut": "REST",
	"fullUserName": "Reginald Storm",
	"email": "rest@example.org",
	"userImageData": "DEADBEEF",
	"rightGroups": [
		{
			"pk": "fvvv78s3ll2",
			"name": "Development",
			"description": "The right group for developers.",
			"custLayer": "CN"
		}
	],
	"deputyOf": null
}