Method: AboutYou::SDK::Model::FacetCount#initialize

Defined in:
lib/AboutYou/Model/ProductSearchResult/facet_count.rb

#initialize(facet, count) ⇒ FacetCount

the Constructor for the facetcount class

  • Args :

    • facet -> a facet

    • count -> the count of the facet

  • Returns :

    • Instance of AboutYou::SDK::Model::FacetCount



23
24
25
26
# File 'lib/AboutYou/Model/ProductSearchResult/facet_count.rb', line 23

def initialize(facet, count)
  self.facet = facet
  self.count = count
end