Class: Google::Apis::RetailV2beta::GoogleCloudRetailV2betaRule

Inherits:
Object
  • Object
show all
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

A rule is a condition-action pair * A condition defines when a rule is to be triggered. * An action specifies what occurs on that trigger. Currently only boost rules are supported. Currently only supported by the search endpoint.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudRetailV2betaRule

Returns a new instance of GoogleCloudRetailV2betaRule.



3752
3753
3754
# File 'lib/google/apis/retail_v2beta/classes.rb', line 3752

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#boost_actionGoogle::Apis::RetailV2beta::GoogleCloudRetailV2betaRuleBoostAction

A boost action to apply to results matching condition specified above. Corresponds to the JSON property boostAction



3688
3689
3690
# File 'lib/google/apis/retail_v2beta/classes.rb', line 3688

def boost_action
  @boost_action
end

#conditionGoogle::Apis::RetailV2beta::GoogleCloudRetailV2betaCondition

Metadata that is used to define a condition that triggers an action. A valid condition must specify at least one of 'query_terms' or 'products_filter'. If multiple fields are specified, the condition is met if all the fields are satisfied e.g. if a set of query terms and product_filter are set, then only items matching the product_filter for requests with a query matching the query terms wil get boosted. Corresponds to the JSON property condition



3698
3699
3700
# File 'lib/google/apis/retail_v2beta/classes.rb', line 3698

def condition
  @condition
end

#do_not_associate_actionGoogle::Apis::RetailV2beta::GoogleCloudRetailV2betaRuleDoNotAssociateAction

Prevents query_term from being associated with specified terms during search. Example: Don't associate "gShoe" and "cheap". Corresponds to the JSON property doNotAssociateAction



3704
3705
3706
# File 'lib/google/apis/retail_v2beta/classes.rb', line 3704

def do_not_associate_action
  @do_not_associate_action
end

#filter_actionGoogle::Apis::RetailV2beta::GoogleCloudRetailV2betaRuleFilterAction

  • Rule Condition: - No Condition provided is a global match. - 1 or more Condition provided is combined with OR operator. * Action Input: The request query and filter that will be applied to the retrieved products, in addition to any filters already provided with the SearchRequest. The AND operator is used to combine the query's existing filters with the filter rule(s). NOTE: May result in 0 results when filters conflict. * Action Result: Filters the returned objects to be ONLY those that passed the filter. Corresponds to the JSON property filterAction


3715
3716
3717
# File 'lib/google/apis/retail_v2beta/classes.rb', line 3715

def filter_action
  @filter_action
end

#ignore_actionGoogle::Apis::RetailV2beta::GoogleCloudRetailV2betaRuleIgnoreAction

Prevents a term in the query from being used in search. Example: Don't search for "shoddy". Corresponds to the JSON property ignoreAction



3721
3722
3723
# File 'lib/google/apis/retail_v2beta/classes.rb', line 3721

def ignore_action
  @ignore_action
end

#oneway_synonyms_actionGoogle::Apis::RetailV2beta::GoogleCloudRetailV2betaRuleOnewaySynonymsAction

Maps a set of terms to a set of synonyms. Set of synonyms will be treated as synonyms of each query term only. query_terms will not be treated as synonyms of each other. Example: "sneakers" will use a synonym of "shoes". " shoes" will not use a synonym of "sneakers". Corresponds to the JSON property onewaySynonymsAction



3729
3730
3731
# File 'lib/google/apis/retail_v2beta/classes.rb', line 3729

def oneway_synonyms_action
  @oneway_synonyms_action
end

#redirect_actionGoogle::Apis::RetailV2beta::GoogleCloudRetailV2betaRuleRedirectAction

Redirects a shopper to a specific page. * Rule Condition: - Must specify Condition. * Action Input: Request Query * Action Result: Redirects shopper to provided uri. Corresponds to the JSON property redirectAction



3736
3737
3738
# File 'lib/google/apis/retail_v2beta/classes.rb', line 3736

def redirect_action
  @redirect_action
end

#replacement_actionGoogle::Apis::RetailV2beta::GoogleCloudRetailV2betaRuleReplacementAction

Replaces a term in the query. Multiple replacement candidates can be specified. All query_terms will be replaced with the replacement term. Example: Replace "gShoe" with "google shoe". Corresponds to the JSON property replacementAction



3743
3744
3745
# File 'lib/google/apis/retail_v2beta/classes.rb', line 3743

def replacement_action
  @replacement_action
end

#twoway_synonyms_actionGoogle::Apis::RetailV2beta::GoogleCloudRetailV2betaRuleTwowaySynonymsAction

Creates a set of terms that will be treated as synonyms of each other. Example: synonyms of "sneakers" and "shoes". * "sneakers" will use a synonym of "shoes" . * "shoes" will use a synonym of "sneakers". Corresponds to the JSON property twowaySynonymsAction



3750
3751
3752
# File 'lib/google/apis/retail_v2beta/classes.rb', line 3750

def twoway_synonyms_action
  @twoway_synonyms_action
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
# File 'lib/google/apis/retail_v2beta/classes.rb', line 3757

def update!(**args)
  @boost_action = args[:boost_action] if args.key?(:boost_action)
  @condition = args[:condition] if args.key?(:condition)
  @do_not_associate_action = args[:do_not_associate_action] if args.key?(:do_not_associate_action)
  @filter_action = args[:filter_action] if args.key?(:filter_action)
  @ignore_action = args[:ignore_action] if args.key?(:ignore_action)
  @oneway_synonyms_action = args[:oneway_synonyms_action] if args.key?(:oneway_synonyms_action)
  @redirect_action = args[:redirect_action] if args.key?(:redirect_action)
  @replacement_action = args[:replacement_action] if args.key?(:replacement_action)
  @twoway_synonyms_action = args[:twoway_synonyms_action] if args.key?(:twoway_synonyms_action)
end