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



1109
1110
1111
# File 'generated/google/apis/content_v2/classes.rb', line 1109

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

Instance Attribute Details

#pretaxGoogle::Apis::ContentV2::Price

Value before taxes. Corresponds to the JSON property pretax



1102
1103
1104
# File 'generated/google/apis/content_v2/classes.rb', line 1102

def pretax
  @pretax
end

#taxGoogle::Apis::ContentV2::Price

Tax value. Corresponds to the JSON property tax



1107
1108
1109
# File 'generated/google/apis/content_v2/classes.rb', line 1107

def tax
  @tax
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1114
1115
1116
1117
# File 'generated/google/apis/content_v2/classes.rb', line 1114

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