Class: Google::Apis::RetailV2::GoogleCloudRetailV2SearchResponseFacet
- Inherits:
-
Object
- Object
- Google::Apis::RetailV2::GoogleCloudRetailV2SearchResponseFacet
- 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 result.
Instance Attribute Summary collapse
-
#dynamic_facet ⇒ Boolean
(also: #dynamic_facet?)
Whether the facet is dynamically generated.
-
#key ⇒ String
The key for this facet.
-
#values ⇒ Array<Google::Apis::RetailV2::GoogleCloudRetailV2SearchResponseFacetFacetValue>
The facet values for this field.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudRetailV2SearchResponseFacet
constructor
A new instance of GoogleCloudRetailV2SearchResponseFacet.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudRetailV2SearchResponseFacet
Returns a new instance of GoogleCloudRetailV2SearchResponseFacet.
5191 5192 5193 |
# File 'lib/google/apis/retail_v2/classes.rb', line 5191 def initialize(**args) update!(**args) end |
Instance Attribute Details
#dynamic_facet ⇒ Boolean Also known as: dynamic_facet?
Whether the facet is dynamically generated.
Corresponds to the JSON property dynamicFacet
5178 5179 5180 |
# File 'lib/google/apis/retail_v2/classes.rb', line 5178 def dynamic_facet @dynamic_facet end |
#key ⇒ String
The key for this facet. E.g., "colorFamilies" or "price" or "attributes.attr1".
Corresponds to the JSON property key
5184 5185 5186 |
# File 'lib/google/apis/retail_v2/classes.rb', line 5184 def key @key end |
#values ⇒ Array<Google::Apis::RetailV2::GoogleCloudRetailV2SearchResponseFacetFacetValue>
The facet values for this field.
Corresponds to the JSON property values
5189 5190 5191 |
# File 'lib/google/apis/retail_v2/classes.rb', line 5189 def values @values end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5196 5197 5198 5199 5200 |
# File 'lib/google/apis/retail_v2/classes.rb', line 5196 def update!(**args) @dynamic_facet = args[:dynamic_facet] if args.key?(:dynamic_facet) @key = args[:key] if args.key?(:key) @values = args[:values] if args.key?(:values) end |