Class: Google::Apis::ContentV2::ProductAmount
- Inherits:
-
Object
- Object
- Google::Apis::ContentV2::ProductAmount
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/content_v2/classes.rb,
lib/google/apis/content_v2/representations.rb,
lib/google/apis/content_v2/representations.rb
Instance Attribute Summary collapse
-
#price_amount ⇒ Google::Apis::ContentV2::Price
The pre-tax or post-tax price depending on the location of the order.
-
#remitted_tax_amount ⇒ Google::Apis::ContentV2::Price
Remitted tax value.
-
#tax_amount ⇒ Google::Apis::ContentV2::Price
Tax value.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ProductAmount
constructor
A new instance of ProductAmount.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ProductAmount
Returns a new instance of ProductAmount.
9032 9033 9034 |
# File 'lib/google/apis/content_v2/classes.rb', line 9032 def initialize(**args) update!(**args) end |
Instance Attribute Details
#price_amount ⇒ Google::Apis::ContentV2::Price
The pre-tax or post-tax price depending on the location of the order.
Corresponds to the JSON property priceAmount
9020 9021 9022 |
# File 'lib/google/apis/content_v2/classes.rb', line 9020 def price_amount @price_amount end |
#remitted_tax_amount ⇒ Google::Apis::ContentV2::Price
Remitted tax value.
Corresponds to the JSON property remittedTaxAmount
9025 9026 9027 |
# File 'lib/google/apis/content_v2/classes.rb', line 9025 def remitted_tax_amount @remitted_tax_amount end |
#tax_amount ⇒ Google::Apis::ContentV2::Price
Tax value.
Corresponds to the JSON property taxAmount
9030 9031 9032 |
# File 'lib/google/apis/content_v2/classes.rb', line 9030 def tax_amount @tax_amount end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
9037 9038 9039 9040 9041 |
# File 'lib/google/apis/content_v2/classes.rb', line 9037 def update!(**args) @price_amount = args[:price_amount] if args.key?(:price_amount) @remitted_tax_amount = args[:remitted_tax_amount] if args.key?(:remitted_tax_amount) @tax_amount = args[:tax_amount] if args.key?(:tax_amount) end |