forAccount method
- 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;
}