searchResultsEntity element
| Type: | searchResultsEntity |
| 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 ProcessorSearchResultDTOs, RemoteProcessGroupSearchResultDTOs, and ConnectionSearchResultDTOs.
Example XML
<?xml version="1.0" encoding="UTF-8"?>
<searchResultsEntity>
<searchResultsDTO>
<processorResults>
<id>...</id>
<groupId>...</groupId>
<name>...</name>
<matches>...</matches>
<matches>...</matches>
<!--...more "matches" elements...-->
</processorResults>
<processorResults>
<!--...-->
</processorResults>
<!--...more "processorResults" elements...-->
<connectionResults>
<id>...</id>
<groupId>...</groupId>
<name>...</name>
<matches>...</matches>
<matches>...</matches>
<!--...more "matches" elements...-->
</connectionResults>
<connectionResults>
<!--...-->
</connectionResults>
<!--...more "connectionResults" elements...-->
<processGroupResults>
<id>...</id>
<groupId>...</groupId>
<name>...</name>
<matches>...</matches>
<matches>...</matches>
<!--...more "matches" elements...-->
</processGroupResults>
<processGroupResults>
<!--...-->
</processGroupResults>
<!--...more "processGroupResults" elements...-->
<inputPortResults>
<id>...</id>
<groupId>...</groupId>
<name>...</name>
<matches>...</matches>
<matches>...</matches>
<!--...more "matches" elements...-->
</inputPortResults>
<inputPortResults>
<!--...-->
</inputPortResults>
<!--...more "inputPortResults" elements...-->
<outputPortResults>
<id>...</id>
<groupId>...</groupId>
<name>...</name>
<matches>...</matches>
<matches>...</matches>
<!--...more "matches" elements...-->
</outputPortResults>
<outputPortResults>
<!--...-->
</outputPortResults>
<!--...more "outputPortResults" elements...-->
<remoteProcessGroupResults>
<id>...</id>
<groupId>...</groupId>
<name>...</name>
<matches>...</matches>
<matches>...</matches>
<!--...more "matches" elements...-->
</remoteProcessGroupResults>
<remoteProcessGroupResults>
<!--...-->
</remoteProcessGroupResults>
<!--...more "remoteProcessGroupResults" elements...-->
<funnelResults>
<id>...</id>
<groupId>...</groupId>
<name>...</name>
<matches>...</matches>
<matches>...</matches>
<!--...more "matches" elements...-->
</funnelResults>
<funnelResults>
<!--...-->
</funnelResults>
<!--...more "funnelResults" elements...-->
</searchResultsDTO>
</searchResultsEntity>
Example JSON
{
"searchResultsDTO" : {
"processorResults" : [ {
"id" : "...",
"groupId" : "...",
"name" : "...",
"matches" : [ "...", ... ]
}, ... ],
"connectionResults" : [ {
"id" : "...",
"groupId" : "...",
"name" : "...",
"matches" : [ "...", ... ]
}, ... ],
"processGroupResults" : [ {
"id" : "...",
"groupId" : "...",
"name" : "...",
"matches" : [ "...", ... ]
}, ... ],
"inputPortResults" : [ {
"id" : "...",
"groupId" : "...",
"name" : "...",
"matches" : [ "...", ... ]
}, ... ],
"outputPortResults" : [ {
"id" : "...",
"groupId" : "...",
"name" : "...",
"matches" : [ "...", ... ]
}, ... ],
"remoteProcessGroupResults" : [ {
"id" : "...",
"groupId" : "...",
"name" : "...",
"matches" : [ "...", ... ]
}, ... ],
"funnelResults" : [ {
"id" : "...",
"groupId" : "...",
"name" : "...",
"matches" : [ "...", ... ]
}, ... ]
}
}