Settlement Batch Summary
Server-side response object returned directly or within a successful result object from the following requests:
Attributes
Records
mapAn array of maps representing settlement batches.
Examples
Generating Settlement Batch Summary
- 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);
}