set Price Levels
fun SearchByTextRequest.Builder.setPriceLevels(priceLevels: Collection<PriceLevel>): SearchByTextRequest.Builder
Deprecated
Use the SDK's setPriceLevels with raw integers instead.
Replace with
setPriceLevels(priceLevels.map { it.value })Content copied to clipboard
Sets the price levels for filtering search results.
Parameters
price Levels
A collection of PriceLevels.
fun SearchByTextRequest.Builder.setPriceLevels(vararg priceLevels: PriceLevel): SearchByTextRequest.Builder
Deprecated
Use the SDK's setPriceLevels with raw integers instead.
Replace with
setPriceLevels(priceLevels.map { it.value })Content copied to clipboard
Sets the price levels for filtering search results.
Parameters
price Levels
A variable number of PriceLevels.