setPriceLevels

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 })

Sets the price levels for filtering search results.

Parameters

priceLevels

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 })

Sets the price levels for filtering search results.

Parameters

priceLevels

A variable number of PriceLevels.