clusterSearchResultsEntity element
| Type: | clusterSearchResultsEntity |
| Namespace: | (default namespace) |
| XML Schema: | ns0.xsd |
A serialized representation of this class can be placed in the entity body of a request or response to or from the API. This particular entity holds a reference to NodeSearchResultDTOs.
Example XML
<?xml version="1.0" encoding="UTF-8"?>
<clusterSearchResultsEntity>
<nodeResults>
<id>...</id>
<address>...</address>
</nodeResults>
<nodeResults>
<!--...-->
</nodeResults>
<!--...more "nodeResults" elements...-->
</clusterSearchResultsEntity>
Example JSON
{
"nodeResults" : [ {
"id" : "...",
"address" : "..."
}, ... ]
}