businessDataCaptureStore element
Type: | imbBusinessDataCaptureResponseObject |
Namespace: | (default namespace) |
XML Schema: | ns0.xsd |
Response to describe a Data Capture Store.
Example XML
<?xml version="1.0" encoding="UTF-8"?>
<businessDataCaptureStore type="..." uri="..." orderBy="..." order="..." startTimestampFrom="..." startTimestampTo="..." lastTimestampFrom="..." lastTimestampTo="..." pageNumber="..." numberOfEntriesPerPage="..." totalResults="..." name="...">
<data>
<businessDataCaptureEntry id="..." status="..." startTimestamp="..." lastUpdateTimestamp="..." dataUri="..." definitionId="..." type="..." />
<businessDataCaptureEntry id="..." status="..." startTimestamp="..." lastUpdateTimestamp="..." dataUri="..." definitionId="..." type="...">
<!--...-->
</businessDataCaptureEntry>
<!--...more "businessDataCaptureEntry" elements...-->
</data>
</businessDataCaptureStore>
Example JSON
{
"type" : "...",
"uri" : {
"value" : "..."
},
"orderBy" : "...",
"order" : "...",
"startTimestampFrom" : "...",
"startTimestampTo" : "...",
"lastTimestampFrom" : "...",
"lastTimestampTo" : "...",
"pageNumber" : "...",
"numberOfEntriesPerPage" : "...",
"totalResults" : "...",
"name" : "...",
"data" : [ {
"id" : "...",
"status" : "...",
"startTimestamp" : "...",
"lastUpdateTimestamp" : "...",
"dataUri" : {
"value" : "..."
},
"definitionId" : "...",
"type" : "..."
}, ... ]
}