forAccount method

OffersRequestBuilder forAccount (
  1. KeyPair account
)

Builds request to GET /accounts/account/offers

Implementation

OffersRequestBuilder forAccount(KeyPair account) {
  account = checkNotNull(account, "account cannot be null");
  this.setSegments(["accounts", account.accountId, "offers"]);
  return this;
}