class AboutYou::SDK::Model::FacetCount

This class represents a FacetCount model.

Attributes

count[RW]

The count of the facet

facet[RW]

The Facet

Public Class Methods

new(facet, count) click to toggle source

the Constructor for the facetcount class

# File lib/AboutYou/Model/ProductSearchResult/facet_count.rb, line 23
def initialize(facet, count)
  self.facet = facet
  self.count = count
end