Class: Google::Apis::RetailV2alpha::GoogleCloudRetailV2alphaRuleRemoveFacetAction
- Inherits:
-
Object
- Object
- Google::Apis::RetailV2alpha::GoogleCloudRetailV2alphaRuleRemoveFacetAction
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/retail_v2alpha/classes.rb,
lib/google/apis/retail_v2alpha/representations.rb,
lib/google/apis/retail_v2alpha/representations.rb
Overview
Removes an attribute/facet in the request if is present. * Rule Condition: Must specify non-empty Condition.query_terms (for search only) or Condition. page_categories (for browse only), but can't specify both. * Action Input: attribute name * Action Result: Will remove the attribute (as a facet) from the request if it is present. Example: Suppose the query is "shoes", the Condition.query_terms is "shoes" and the attribute name "size", then facet key "size" will be removed from the request (if it is present).
Instance Attribute Summary collapse
-
#attribute_names ⇒ Array<String>
The attribute names (i.e. facet keys) to remove from the dynamic facets (if present in the request).
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudRetailV2alphaRuleRemoveFacetAction
constructor
A new instance of GoogleCloudRetailV2alphaRuleRemoveFacetAction.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudRetailV2alphaRuleRemoveFacetAction
Returns a new instance of GoogleCloudRetailV2alphaRuleRemoveFacetAction.
6398 6399 6400 |
# File 'lib/google/apis/retail_v2alpha/classes.rb', line 6398 def initialize(**args) update!(**args) end |
Instance Attribute Details
#attribute_names ⇒ Array<String>
The attribute names (i.e. facet keys) to remove from the dynamic facets (if
present in the request). There can't be more 3 attribute names. Each attribute
name should be a valid attribute name, be non-empty and contain at most 80
characters.
Corresponds to the JSON property attributeNames
6396 6397 6398 |
# File 'lib/google/apis/retail_v2alpha/classes.rb', line 6396 def attribute_names @attribute_names end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6403 6404 6405 |
# File 'lib/google/apis/retail_v2alpha/classes.rb', line 6403 def update!(**args) @attribute_names = args[:attribute_names] if args.key?(:attribute_names) end |