Class: Google::Apis::ContentV2::Amount
- Inherits:
-
Object
- Object
- Google::Apis::ContentV2::Amount
- Defined in:
- generated/google/apis/content_v2/classes.rb,
generated/google/apis/content_v2/representations.rb,
generated/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.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ Amount
Returns a new instance of Amount
1477 1478 1479 |
# File 'generated/google/apis/content_v2/classes.rb', line 1477 def initialize(**args) update!(**args) end |
Instance Attribute Details
#pretax ⇒ Google::Apis::ContentV2::Price
[required] Value before taxes.
Corresponds to the JSON property pretax
1470 1471 1472 |
# File 'generated/google/apis/content_v2/classes.rb', line 1470 def pretax @pretax end |
#tax ⇒ Google::Apis::ContentV2::Price
[required] Tax value.
Corresponds to the JSON property tax
1475 1476 1477 |
# File 'generated/google/apis/content_v2/classes.rb', line 1475 def tax @tax end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1482 1483 1484 1485 |
# File 'generated/google/apis/content_v2/classes.rb', line 1482 def update!(**args) @pretax = args[:pretax] if args.key?(:pretax) @tax = args[:tax] if args.key?(:tax) end |