forAccount method
- 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;
}