forAccount method
- String accountId
Effects request builder of a specific account given by accountId
.
See: Effects for Account
Implementation
EffectsRequestBuilder forAccount(String accountId) {
accountId = checkNotNull(accountId, "accountId cannot be null");
this.setSegments(["accounts", accountId, "effects"]);
return this;
}