labelsEntity element
| Type: | labelsEntity |
| Namespace: | (default namespace) |
| XML Schema: | ns0.xsd |
A serialized representation of this class can be placed in the entity body of a response to the API. This particular entity holds a reference to a list of LabelDTOs.
Example XML
<?xml version="1.0" encoding="UTF-8"?>
<labelsEntity>
<revision>
<clientId>...</clientId>
<version>...</version>
</revision>
<labels>
<id>...</id>
<parentGroupId>...</parentGroupId>
<uri>...</uri>
<position>
<x>...</x>
<y>...</y>
</position>
<label>...</label>
<style>
<entry>
<key>...</key>
<value>...</value>
</entry>
<entry>
<key>
<!--(another 'string' type)-->
</key>
<value>
<!--(another 'string' type)-->
</value>
</entry>
<!--...more entries...-->
</style>
<height>...</height>
<width>...</width>
</labels>
<labels>
<!--...-->
</labels>
<!--...more "labels" elements...-->
</labelsEntity>
Example JSON
{
"labels" : [ {
"label" : "...",
"style" : {
"..." : "...",
"---" : ...
},
"height" : ...,
"width" : ...,
"id" : "...",
"parentGroupId" : "...",
"uri" : "...",
"position" : {
"x" : ...,
"y" : ...
}
}, ... ],
"revision" : {
"clientId" : "...",
"version" : ...
}
}