Contains results of a batch search.
This object is returned by the searchBatches method. It describes the result of the search, including the total number of batches matched, the number being returned, and an array of BatchStatus objects
Type |
Name |
Description |
integer |
BatchesMatched |
Total number of batches matched |
integer |
BatchesReturned |
Number of batches returned in this result set |
integer |
StartIndex |
The starting index used (defaults to 0) |
integer |
Limit |
The max number batches to return in each result set. |
Batches |
An array BatchStatus objects for the matched batches |
Dim result As eBizCharge.BatchSearchResult = New eBizCharge.BatchSearchResult
result = client.searchBatches(token, search, matchAll, start, limit, sort)
MsgBox(result.BatchesMatched)
eBizCharge.BatchSearchResult result = new eBizCharge.BatchSearchResult();
try
{
result = client.searchBatches(token, search, matchAll, start, limit, sort);
MessageBox.Show(string.Concat(result.BatchesMatched));
}