Class: Google::Apis::RetailV2beta::GoogleCloudRetailV2betaRuleDoNotAssociateAction

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

Prevents query_term from being associated with specified terms during search. Example: Don't associate "gShoe" and "cheap".

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudRetailV2betaRuleDoNotAssociateAction

Returns a new instance of GoogleCloudRetailV2betaRuleDoNotAssociateAction.



6630
6631
6632
# File 'lib/google/apis/retail_v2beta/classes.rb', line 6630

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

Instance Attribute Details

#do_not_associate_termsArray<String>

Cannot contain duplicates or the query term. Can specify up to 100 terms. Corresponds to the JSON property doNotAssociateTerms

Returns:

  • (Array<String>)


6617
6618
6619
# File 'lib/google/apis/retail_v2beta/classes.rb', line 6617

def do_not_associate_terms
  @do_not_associate_terms
end

#query_termsArray<String>

Terms from the search query. Will not consider do_not_associate_terms for search if in search query. Can specify up to 100 terms. Corresponds to the JSON property queryTerms

Returns:

  • (Array<String>)


6623
6624
6625
# File 'lib/google/apis/retail_v2beta/classes.rb', line 6623

def query_terms
  @query_terms
end

#termsArray<String>

Will be [deprecated = true] post migration; Corresponds to the JSON property terms

Returns:

  • (Array<String>)


6628
6629
6630
# File 'lib/google/apis/retail_v2beta/classes.rb', line 6628

def terms
  @terms
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6635
6636
6637
6638
6639
# File 'lib/google/apis/retail_v2beta/classes.rb', line 6635

def update!(**args)
  @do_not_associate_terms = args[:do_not_associate_terms] if args.key?(:do_not_associate_terms)
  @query_terms = args[:query_terms] if args.key?(:query_terms)
  @terms = args[:terms] if args.key?(:terms)
end