Class: Google::Apis::ContentV2::Amount
- Inherits:
-
Object
- Object
- Google::Apis::ContentV2::Amount
- 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
-
#pretax ⇒ Google::Apis::ContentV2::Price
[required] Value before taxes.
-
#tax ⇒ Google::Apis::ContentV2::Price
[required] Tax value.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Amount
constructor
A new instance of Amount.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Amount
Returns a new instance of Amount.
1568 1569 1570 |
# File 'lib/google/apis/content_v2/classes.rb', line 1568 def initialize(**args) update!(**args) end |
Instance Attribute Details
#pretax ⇒ Google::Apis::ContentV2::Price
[required] Value before taxes.
Corresponds to the JSON property pretax
1561 1562 1563 |
# File 'lib/google/apis/content_v2/classes.rb', line 1561 def pretax @pretax end |
#tax ⇒ Google::Apis::ContentV2::Price
[required] Tax value.
Corresponds to the JSON property tax
1566 1567 1568 |
# File 'lib/google/apis/content_v2/classes.rb', line 1566 def tax @tax end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1573 1574 1575 1576 |
# File 'lib/google/apis/content_v2/classes.rb', line 1573 def update!(**args) @pretax = args[:pretax] if args.key?(:pretax) @tax = args[:tax] if args.key?(:tax) end |