processorHistoryEntity element
| Type: | processorHistoryEntity |
| 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 ProcessorHistoryDTO.
Example XML
<?xml version="1.0" encoding="UTF-8"?>
<processorHistoryEntity>
<revision>
<clientId>...</clientId>
<version>...</version>
</revision>
<processorHistory>
<processorId>...</processorId>
<propertyHistory>
<entry>
<key>...</key>
<value>
<previousValues>
<previousValue>...</previousValue>
<timestamp>...</timestamp>
<userName>...</userName>
</previousValues>
<previousValues>
<!--...-->
</previousValues>
<!--...more "previousValues" elements...-->
</value>
</entry>
<entry>
<key>
<!--(another 'string' type)-->
</key>
<value>
<!--(another 'propertyHistory' type)-->
</value>
</entry>
<!--...more entries...-->
</propertyHistory>
</processorHistory>
</processorHistoryEntity>
Example JSON
{
"processorHistory" : {
"processorId" : "...",
"propertyHistory" : {
"..." : {
"previousValues" : [ {
"previousValue" : "...",
"timestamp" : "...",
"userName" : "..."
}, ... ]
},
"---" : ...
}
},
"revision" : {
"clientId" : "...",
"version" : ...
}
}