forBuyingAsset method
- Asset asset
Returns all offers buying an asset
.
See Offers
Implementation
OffersRequestBuilder forBuyingAsset(Asset asset) {
asset = checkNotNull(asset, "asset cannot be null");
queryParameters.addAll({"buying": encodeAsset(asset)});
return this;
}