This simple bean holds information about teh creation and last modification of a resource.
| name | data type | description |
|---|---|---|
| creationDate | number | This getter gets the date when the resource was created. |
| creationUser | UserListItemType | This getter gets the user that created the resource. |
| lastModificationDate | number | This getter gets the date the resource was last modified. |
| lastModificationUser | UserListItemType | This getter gets the user that modified the resource last. |
Example
{
"creationDate" : 12345,
"creationUser" : {
"type" : "GROUP",
"deleted" : true,
"name" : "...",
"reference" : {
"id" : 12345,
"type" : "USER"
}
},
"lastModificationDate" : 12345,
"lastModificationUser" : {
"type" : "USER",
"deleted" : true,
"name" : "...",
"reference" : {
"id" : 12345,
"type" : "USER"
}
}
}