Settlement Batch Summary
Server-side response object returned directly or within a successful result object from the following requests:
Attributes
getRecords()
mapAn array of maps representing settlement batches.
Examples
Generating Settlement Batch Summary
- Java
Result<settlementbatchsummary> result = gateway
.settlementBatchSummary()
.generate(Calendar.getInstance(), "custom_field_1");
if (result.isSuccess()) {
List<map<string,string>> records = result.getTarget().getRecords();
}