Settlement Batch Summary

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

An array of maps representing settlement batches.

ExamplesAnchorIcon

Generating Settlement Batch SummaryAnchorIcon

  1. PHP
$today = new Datetime;
$result = $gateway->settlementBatchSummary()->generate(
  $today->format("Y-m-d"),
  "custom_field_1"
);
if ($result->success) {
  var_dump($result->settlementBatchSummary->records);
}

Records data structureAnchorIcon

Below is an example of the data structure returned by records.
  1. PHP
(
  [0] => Array (
    [kind] => sale
    [cardType] => Mastercard
    [merchantAccountId] => your_merchant_account_id
    [count] => 1
    [amountSettled] => 100.00
    [custom_field_1] => your_first_custom_value
  )
  [1] => Array (
    [kind] => sale
    [cardType] => Mastercard
    [merchantAccountId] => your_merchant_account_id
    [count] => 5
    [amountSettled] => 250.00
    [custom_field_1] => your_second_custom_value
  )
)