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
1498 1499 1500 |
# File 'generated/google/apis/content_v2/classes.rb', line 1498 def initialize(**args) update!(**args) end |
Instance Attribute Details
#pretax ⇒ Google::Apis::ContentV2::Price
[required] Value before taxes.
Corresponds to the JSON property pretax
1491 1492 1493 |
# File 'generated/google/apis/content_v2/classes.rb', line 1491 def pretax @pretax end |
#tax ⇒ Google::Apis::ContentV2::Price
[required] Tax value.
Corresponds to the JSON property tax
1496 1497 1498 |
# File 'generated/google/apis/content_v2/classes.rb', line 1496 def tax @tax end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1503 1504 1505 1506 |
# File 'generated/google/apis/content_v2/classes.rb', line 1503 def update!(**args) @pretax = args[:pretax] if args.key?(:pretax) @tax = args[:tax] if args.key?(:tax) end |