forAccount method

EffectsRequestBuilder forAccount(
  1. String accountId
)

Effects request builder of a specific account given by accountId. See: Effects for Account

Implementation

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