Class: Google::Apis::ContentV2::Amount

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
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

Instance Method Summary collapse

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Amount

Returns a new instance of Amount.



1497
1498
1499
# File 'generated/google/apis/content_v2/classes.rb', line 1497

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#pretaxGoogle::Apis::ContentV2::Price

[required] Value before taxes. Corresponds to the JSON property pretax



1490
1491
1492
# File 'generated/google/apis/content_v2/classes.rb', line 1490

def pretax
  @pretax
end

#taxGoogle::Apis::ContentV2::Price

[required] Tax value. Corresponds to the JSON property tax



1495
1496
1497
# File 'generated/google/apis/content_v2/classes.rb', line 1495

def tax
  @tax
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1502
1503
1504
1505
# File 'generated/google/apis/content_v2/classes.rb', line 1502

def update!(**args)
  @pretax = args[:pretax] if args.key?(:pretax)
  @tax = args[:tax] if args.key?(:tax)
end