Settlement Batch Summaryanchor

Server-side response object returned directly or within a successful result object from the following requests:
Attributes

An array of maps representing settlement batches.

Examplesanchor

Generating Settlement Batch Summaryanchor

  1. Java
Result<SettlementBatchSummary> result = gateway
  .settlementBatchSummary()
  .generate(Calendar.getInstance(), "custom_field_1");

if (result.isSuccess()) {
  List<Map<String,String>> records = result.getTarget().getRecords();
}