Class: Google::Apis::RetailV2beta::GoogleCloudRetailV2betaCatalogAttributeFacetConfigMergedFacet
- Inherits:
-
Object
- Object
- Google::Apis::RetailV2beta::GoogleCloudRetailV2betaCatalogAttributeFacetConfigMergedFacet
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/retail_v2beta/classes.rb,
lib/google/apis/retail_v2beta/representations.rb,
lib/google/apis/retail_v2beta/representations.rb
Overview
The current facet key (i.e. attribute config) maps into the merged_facet_key. A facet key can have at most one child. The current facet key and the merged facet key need both to be textual custom attributes or both numerical custom attributes (same type).
Instance Attribute Summary collapse
-
#merged_facet_key ⇒ String
The merged facet key should be a valid facet key that is different than the facet key of the current catalog attribute.
-
#merged_facet_values ⇒ Array<Google::Apis::RetailV2beta::GoogleCloudRetailV2betaCatalogAttributeFacetConfigMergedFacetValue>
Each instance is a list of facet values that map into the same (possibly different) merged facet value.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudRetailV2betaCatalogAttributeFacetConfigMergedFacet
constructor
A new instance of GoogleCloudRetailV2betaCatalogAttributeFacetConfigMergedFacet.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudRetailV2betaCatalogAttributeFacetConfigMergedFacet
Returns a new instance of GoogleCloudRetailV2betaCatalogAttributeFacetConfigMergedFacet.
3144 3145 3146 |
# File 'lib/google/apis/retail_v2beta/classes.rb', line 3144 def initialize(**args) update!(**args) end |
Instance Attribute Details
#merged_facet_key ⇒ String
The merged facet key should be a valid facet key that is different than the
facet key of the current catalog attribute. We refer this is merged facet key
as the child of the current catalog attribute. This merged facet key can't be
a parent of another facet key (i.e. no directed path of length 2). This merged
facet key needs to be either a textual custom attribute or a numerical custom
attribute.
Corresponds to the JSON property mergedFacetKey
3135 3136 3137 |
# File 'lib/google/apis/retail_v2beta/classes.rb', line 3135 def merged_facet_key @merged_facet_key end |
#merged_facet_values ⇒ Array<Google::Apis::RetailV2beta::GoogleCloudRetailV2betaCatalogAttributeFacetConfigMergedFacetValue>
Each instance is a list of facet values that map into the same (possibly
different) merged facet value. For the current attribute config, each facet
value should map to at most one merged facet value.
Corresponds to the JSON property mergedFacetValues
3142 3143 3144 |
# File 'lib/google/apis/retail_v2beta/classes.rb', line 3142 def merged_facet_values @merged_facet_values end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3149 3150 3151 3152 |
# File 'lib/google/apis/retail_v2beta/classes.rb', line 3149 def update!(**args) @merged_facet_key = args[:merged_facet_key] if args.key?(:merged_facet_key) @merged_facet_values = args[:merged_facet_values] if args.key?(:merged_facet_values) end |