statusHistoryEntity element
| Type: | statusHistoryEntity |
| 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 StatusHistoryDTO.
Example XML
<?xml version="1.0" encoding="UTF-8"?>
<statusHistoryEntity>
<revision>
<clientId>...</clientId>
<version>...</version>
</revision>
<statusHistory>
<generated>...</generated>
<details>
<entry>
<key>...</key>
<value>...</value>
</entry>
<entry>
<key>
<!--(another 'string' type)-->
</key>
<value>
<!--(another 'string' type)-->
</value>
</entry>
<!--...more entries...-->
</details>
<fieldDescriptors>
<field>...</field>
<label>...</label>
<description>...</description>
<formatter>...</formatter>
</fieldDescriptors>
<fieldDescriptors>
<!--...-->
</fieldDescriptors>
<!--...more "fieldDescriptors" elements...-->
<statusSnapshots>
<timestamp>...</timestamp>
<statusMetrics>
<entry>
<key>...</key>
<value>...</value>
</entry>
<entry>
<key>
<!--(another 'string' type)-->
</key>
<value>
<!--(another 'long' type)-->
</value>
</entry>
<!--...more entries...-->
</statusMetrics>
</statusSnapshots>
<statusSnapshots>
<!--...-->
</statusSnapshots>
<!--...more "statusSnapshots" elements...-->
</statusHistory>
</statusHistoryEntity>
Example JSON
{
"statusHistory" : {
"generated" : "...",
"details" : {
"..." : "...",
"---" : ...
},
"fieldDescriptors" : [ {
"field" : "...",
"label" : "...",
"description" : "...",
"formatter" : "..."
}, ... ],
"statusSnapshots" : [ {
"timestamp" : "...",
"statusMetrics" : {
"..." : ...,
"---" : ...
}
}, ... ]
},
"revision" : {
"clientId" : "...",
"version" : ...
}
}