forAccount method
- String accountId
Builds request to GET /accounts/
See: Effects for Accountaccount
/effects
Implementation
EffectsRequestBuilder forAccount(String accountId) {
accountId = checkNotNull(accountId, "accountId cannot be null");
this.setSegments(["accounts", accountId, "effects"]);
return this;
}