Class: Google::Apis::ContentV2sandbox::Amount

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
generated/google/apis/content_v2sandbox/classes.rb,
generated/google/apis/content_v2sandbox/representations.rb,
generated/google/apis/content_v2sandbox/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



39
40
41
# File 'generated/google/apis/content_v2sandbox/classes.rb', line 39

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

Instance Attribute Details

#pretaxGoogle::Apis::ContentV2sandbox::Price

Value before taxes. Corresponds to the JSON property pretax



32
33
34
# File 'generated/google/apis/content_v2sandbox/classes.rb', line 32

def pretax
  @pretax
end

#taxGoogle::Apis::ContentV2sandbox::Price

Tax value. Corresponds to the JSON property tax



37
38
39
# File 'generated/google/apis/content_v2sandbox/classes.rb', line 37

def tax
  @tax
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



44
45
46
47
# File 'generated/google/apis/content_v2sandbox/classes.rb', line 44

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