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
-
Args :
-
facet
-> a facet -
count
-> the count of the facet
-
-
Returns :
-
Instance of
AboutYou::SDK::Model::FacetCount
-
# File lib/AboutYou/Model/ProductSearchResult/facet_count.rb, line 23 def initialize(facet, count) self.facet = facet self.count = count end