counterEntity element

Type: counterEntity
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 CounterDTO.

Example XML

<?xml version="1.0" encoding="UTF-8"?> <counterEntity> <revision> <clientId>...</clientId> <version>...</version> </revision> <counter> <context>...</context> <id>...</id> <name>...</name> <value>...</value> <valueCount>...</valueCount> </counter> </counterEntity>

Example JSON

{ "counter" : { "context" : "...", "id" : "...", "name" : "...", "value" : "...", "valueCount" : ... }, "revision" : { "clientId" : "...", "version" : ... } }