whereCurrencyIsLessThan method

T whereCurrencyIsLessThan(
  1. int amount
)

Results should have an amount less than this value. MicroAlgos are the default currency unless an asset-id is provided, in which case the asset will be used.

Implementation

T whereCurrencyIsLessThan(int amount) {
  addQueryParameter('currency-less-than', amount);
  return me();
}