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) {
  accountId = checkNotNull(accountId, "accountId cannot be null");
  this.setSegments(["accounts", accountId, "operations"]);
  return this;
}