SmartSuggestResult

data class SmartSuggestResult(    val terms: List<String>,     val didYouMean: List<String>,     val categories: List<String>,     val products: List<Product>)

Constructors

Link copied to clipboard
fun SmartSuggestResult(    terms: List<String>,     didYouMean: List<String>,     categories: List<String>,     products: List<Product>)

Properties

Link copied to clipboard
val categories: List<String>
Link copied to clipboard
val didYouMean: List<String>
Link copied to clipboard
val products: List<Product>
Link copied to clipboard
val terms: List<String>