historyEntity element

Type: historyEntity
Namespace: (default namespace)
XML Schema: ns0.xsd

A serialized representation of this class can be placed in the entity body of a request or response to or from the API. This particular entity holds a reference to a HistoryDTO.

Example XML

<?xml version="1.0" encoding="UTF-8"?> <historyEntity> <revision> <clientId>...</clientId> <version>...</version> </revision> <history> <total>...</total> <lastRefreshed>...</lastRefreshed> <actions> <id>...</id> <userDn>...</userDn> <userName>...</userName> <timestamp>...</timestamp> <sourceId>...</sourceId> <sourceName>...</sourceName> <sourceType>...</sourceType> <componentDetails /> <operation>...</operation> <actionDetails /> </actions> <actions> <!--...--> </actions> <!--...more "actions" elements...--> </history> </historyEntity>

Example JSON

{ "history" : { "total" : ..., "lastRefreshed" : "...", "actions" : [ { "id" : ..., "userDn" : "...", "userName" : "...", "timestamp" : "...", "sourceId" : "...", "sourceName" : "...", "sourceType" : "...", "componentDetails" : { }, "operation" : "...", "actionDetails" : { } }, ... ] }, "revision" : { "clientId" : "...", "version" : ... } }