countersEntity element

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

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

Example XML

<?xml version="1.0" encoding="UTF-8"?> <countersEntity> <revision> <clientId>...</clientId> <version>...</version> </revision> <counters> <counters> <context>...</context> <id>...</id> <name>...</name> <value>...</value> <valueCount>...</valueCount> </counters> <counters> <!--...--> </counters> <!--...more "counters" elements...--> <generated>...</generated> </counters> </countersEntity>

Example JSON

{ "counters" : { "counters" : [ { "context" : "...", "id" : "...", "name" : "...", "value" : "...", "valueCount" : ... }, ... ], "generated" : "..." }, "revision" : { "clientId" : "...", "version" : ... } }