Class: Google::Apis::ContentV2::Promotion
- Inherits:
-
Object
- Object
- Google::Apis::ContentV2::Promotion
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/content_v2/classes.rb,
lib/google/apis/content_v2/representations.rb,
lib/google/apis/content_v2/representations.rb
Instance Attribute Summary collapse
-
#promotion_amount ⇒ Google::Apis::ContentV2::Amount
[required] Amount of the promotion.
-
#promotion_id ⇒ String
[required] ID of the promotion.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Promotion
constructor
A new instance of Promotion.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Promotion
Returns a new instance of Promotion.
9914 9915 9916 |
# File 'lib/google/apis/content_v2/classes.rb', line 9914 def initialize(**args) update!(**args) end |
Instance Attribute Details
#promotion_amount ⇒ Google::Apis::ContentV2::Amount
[required] Amount of the promotion. The values here are the promotion applied
to the unit price pretax and to the total of the tax amounts.
Corresponds to the JSON property promotionAmount
9907 9908 9909 |
# File 'lib/google/apis/content_v2/classes.rb', line 9907 def promotion_amount @promotion_amount end |
#promotion_id ⇒ String
[required] ID of the promotion.
Corresponds to the JSON property promotionId
9912 9913 9914 |
# File 'lib/google/apis/content_v2/classes.rb', line 9912 def promotion_id @promotion_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
9919 9920 9921 9922 |
# File 'lib/google/apis/content_v2/classes.rb', line 9919 def update!(**args) @promotion_amount = args[:promotion_amount] if args.key?(:promotion_amount) @promotion_id = args[:promotion_id] if args.key?(:promotion_id) end |