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. CS
var result = gateway.SettlementBatchSummary.Generate(
  DateTime.Now,
  "custom_field_1"
);

if (result.IsSuccess())
{
    List<IDictionary<String,String>> records = result.Target.Records;
    Console.Write(records);
}