Class: Google::Apis::ContentV2_1::RepricingRuleEligibleOfferMatcher
- Inherits:
-
Object
- Object
- Google::Apis::ContentV2_1::RepricingRuleEligibleOfferMatcher
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/content_v2_1/classes.rb,
lib/google/apis/content_v2_1/representations.rb,
lib/google/apis/content_v2_1/representations.rb
Overview
Matcher that specifies eligible offers. When the USE_FEED_ATTRIBUTE option is selected, only the repricing_rule_id attribute on the product feed is used to specify offer-rule mapping. When the CUSTOM_FILTER option is selected, only the *_matcher fields are used to filter the offers for offer-rule mapping. If the CUSTOM_FILTER option is selected, an offer needs to satisfy each custom filter matcher to be eligible for a rule. Size limit: the sum of the number of entries in all the matchers should not exceed 20. For example, there can be 15 product ids and 5 brands, but not 10 product ids and 11 brands.
Instance Attribute Summary collapse
-
#brand_matcher ⇒ Google::Apis::ContentV2_1::RepricingRuleEligibleOfferMatcherStringMatcher
Matcher by string attributes.
-
#item_group_id_matcher ⇒ Google::Apis::ContentV2_1::RepricingRuleEligibleOfferMatcherStringMatcher
Matcher by string attributes.
-
#matcher_option ⇒ String
Determines whether to use the custom matchers or the product feed attribute " repricing_rule_id" to specify offer-rule mapping.
-
#offer_id_matcher ⇒ Google::Apis::ContentV2_1::RepricingRuleEligibleOfferMatcherStringMatcher
Matcher by string attributes.
-
#skip_when_on_promotion ⇒ Boolean
(also: #skip_when_on_promotion?)
When true, the rule won't be applied to offers with active promotions.
Instance Method Summary collapse
-
#initialize(**args) ⇒ RepricingRuleEligibleOfferMatcher
constructor
A new instance of RepricingRuleEligibleOfferMatcher.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ RepricingRuleEligibleOfferMatcher
Returns a new instance of RepricingRuleEligibleOfferMatcher.
12741 12742 12743 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 12741 def initialize(**args) update!(**args) end |
Instance Attribute Details
#brand_matcher ⇒ Google::Apis::ContentV2_1::RepricingRuleEligibleOfferMatcherStringMatcher
Matcher by string attributes.
Corresponds to the JSON property brandMatcher
12717 12718 12719 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 12717 def brand_matcher @brand_matcher end |
#item_group_id_matcher ⇒ Google::Apis::ContentV2_1::RepricingRuleEligibleOfferMatcherStringMatcher
Matcher by string attributes.
Corresponds to the JSON property itemGroupIdMatcher
12722 12723 12724 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 12722 def item_group_id_matcher @item_group_id_matcher end |
#matcher_option ⇒ String
Determines whether to use the custom matchers or the product feed attribute "
repricing_rule_id" to specify offer-rule mapping.
Corresponds to the JSON property matcherOption
12728 12729 12730 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 12728 def matcher_option @matcher_option end |
#offer_id_matcher ⇒ Google::Apis::ContentV2_1::RepricingRuleEligibleOfferMatcherStringMatcher
Matcher by string attributes.
Corresponds to the JSON property offerIdMatcher
12733 12734 12735 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 12733 def offer_id_matcher @offer_id_matcher end |
#skip_when_on_promotion ⇒ Boolean Also known as: skip_when_on_promotion?
When true, the rule won't be applied to offers with active promotions.
Corresponds to the JSON property skipWhenOnPromotion
12738 12739 12740 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 12738 def skip_when_on_promotion @skip_when_on_promotion end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
12746 12747 12748 12749 12750 12751 12752 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 12746 def update!(**args) @brand_matcher = args[:brand_matcher] if args.key?(:brand_matcher) @item_group_id_matcher = args[:item_group_id_matcher] if args.key?(:item_group_id_matcher) @matcher_option = args[:matcher_option] if args.key?(:matcher_option) @offer_id_matcher = args[:offer_id_matcher] if args.key?(:offer_id_matcher) @skip_when_on_promotion = args[:skip_when_on_promotion] if args.key?(:skip_when_on_promotion) end |