ModificationMetaDataType Data Type

This simple bean holds information about teh creation and last modification of a resource.

Properties
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" : "USER",
    "name" : "...",
    "deleted" : true,
    "reference" : {
      "id" : 12345,
      "type" : "USER"
    }
  },
  "lastModificationDate" : 12345,
  "lastModificationUser" : {
    "type" : "GROUP",
    "name" : "...",
    "deleted" : true,
    "reference" : {
      "id" : 12345,
      "type" : "USER"
    }
  }
}