funnelsEntity element
| Type: | funnelsEntity |
| 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 FunnelDTOs.
Example XML
<?xml version="1.0" encoding="UTF-8"?>
<funnelsEntity>
<revision>
<clientId>...</clientId>
<version>...</version>
</revision>
<funnels>
<id>...</id>
<parentGroupId>...</parentGroupId>
<uri>...</uri>
<position>
<x>...</x>
<y>...</y>
</position>
</funnels>
<funnels>
<!--...-->
</funnels>
<!--...more "funnels" elements...-->
</funnelsEntity>
Example JSON
{
"funnels" : [ {
"id" : "...",
"parentGroupId" : "...",
"uri" : "...",
"position" : {
"x" : ...,
"y" : ...
}
}, ... ],
"revision" : {
"clientId" : "...",
"version" : ...
}
}