forAccount method
- String accountId
Returns all offers a given account has currently open. See: Offers for Account
Implementation
OffersRequestBuilder forAccount(String accountId) {
accountId = checkNotNull(accountId, "accountId cannot be null");
this.setSegments(["accounts", accountId, "offers"]);
return this;
}