forAccount method

OperationsRequestBuilder forAccount(
  1. String accountId
)

Returns successful operations for a given account identified by accountId. See: Operations for Account

Implementation

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