forAccount method

PaymentsRequestBuilder forAccount(
  1. String accountId
)

Returns successful payments for a given account identified by accountId. See: Payments for Account

Implementation

PaymentsRequestBuilder forAccount(String accountId) {
  this.setSegments(["accounts", accountId, "payments"]);
  return this;
}