Interface ProductSearchFacetResultCount

All Superinterfaces:
ProductSearchFacetResult

public interface ProductSearchFacetResultCount extends ProductSearchFacetResult

Result of a count facet.


Example to create an instance using the builder pattern

     ProductSearchFacetResultCount productSearchFacetResultCount = ProductSearchFacetResultCount.builder()
             .name("{name}")
             .value(0.3)
             .build()
 
  • Method Details