Class: Google::Apis::RetailV2::GoogleCloudRetailV2SearchResponseFacetFacetValue
- Inherits:
-
Object
- Object
- Google::Apis::RetailV2::GoogleCloudRetailV2SearchResponseFacetFacetValue
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/retail_v2/classes.rb,
lib/google/apis/retail_v2/representations.rb,
lib/google/apis/retail_v2/representations.rb
Overview
A facet value which contains value names and their count.
Instance Attribute Summary collapse
-
#count ⇒ Fixnum
Number of items that have this facet value.
-
#interval ⇒ Google::Apis::RetailV2::GoogleCloudRetailV2Interval
A floating point interval.
-
#max_value ⇒ Float
The maximum value in the FacetValue.interval.
-
#min_value ⇒ Float
The minimum value in the FacetValue.interval.
-
#value ⇒ String
Text value of a facet, such as "Black" for facet "colorFamilies".
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudRetailV2SearchResponseFacetFacetValue
constructor
A new instance of GoogleCloudRetailV2SearchResponseFacetFacetValue.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudRetailV2SearchResponseFacetFacetValue
Returns a new instance of GoogleCloudRetailV2SearchResponseFacetFacetValue.
4898 4899 4900 |
# File 'lib/google/apis/retail_v2/classes.rb', line 4898 def initialize(**args) update!(**args) end |
Instance Attribute Details
#count ⇒ Fixnum
Number of items that have this facet value.
Corresponds to the JSON property count
4874 4875 4876 |
# File 'lib/google/apis/retail_v2/classes.rb', line 4874 def count @count end |
#interval ⇒ Google::Apis::RetailV2::GoogleCloudRetailV2Interval
A floating point interval.
Corresponds to the JSON property interval
4879 4880 4881 |
# File 'lib/google/apis/retail_v2/classes.rb', line 4879 def interval @interval end |
#max_value ⇒ Float
The maximum value in the FacetValue.interval. Only supported on numerical
facets and returned if SearchRequest.FacetSpec.FacetKey.return_min_max is true.
Corresponds to the JSON property maxValue
4885 4886 4887 |
# File 'lib/google/apis/retail_v2/classes.rb', line 4885 def max_value @max_value end |
#min_value ⇒ Float
The minimum value in the FacetValue.interval. Only supported on numerical
facets and returned if SearchRequest.FacetSpec.FacetKey.return_min_max is true.
Corresponds to the JSON property minValue
4891 4892 4893 |
# File 'lib/google/apis/retail_v2/classes.rb', line 4891 def min_value @min_value end |
#value ⇒ String
Text value of a facet, such as "Black" for facet "colorFamilies".
Corresponds to the JSON property value
4896 4897 4898 |
# File 'lib/google/apis/retail_v2/classes.rb', line 4896 def value @value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4903 4904 4905 4906 4907 4908 4909 |
# File 'lib/google/apis/retail_v2/classes.rb', line 4903 def update!(**args) @count = args[:count] if args.key?(:count) @interval = args[:interval] if args.key?(:interval) @max_value = args[:max_value] if args.key?(:max_value) @min_value = args[:min_value] if args.key?(:min_value) @value = args[:value] if args.key?(:value) end |