Class: Google::Apis::ContentV2_1::UnitInvoice
- Inherits:
-
Object
- Object
- Google::Apis::ContentV2_1::UnitInvoice
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/content_v2_1/classes.rb,
lib/google/apis/content_v2_1/representations.rb,
lib/google/apis/content_v2_1/representations.rb
Instance Attribute Summary collapse
-
#additional_charges ⇒ Array<Google::Apis::ContentV2_1::UnitInvoiceAdditionalCharge>
Additional charges for a unit, e.g.
-
#unit_price ⇒ Google::Apis::ContentV2_1::Price
[required] Pre-tax or post-tax price of the unit depending on the locality of the order.
-
#unit_price_taxes ⇒ Array<Google::Apis::ContentV2_1::UnitInvoiceTaxLine>
Tax amounts to apply to the unit price.
Instance Method Summary collapse
-
#initialize(**args) ⇒ UnitInvoice
constructor
A new instance of UnitInvoice.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ UnitInvoice
Returns a new instance of UnitInvoice.
14585 14586 14587 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 14585 def initialize(**args) update!(**args) end |
Instance Attribute Details
#additional_charges ⇒ Array<Google::Apis::ContentV2_1::UnitInvoiceAdditionalCharge>
Additional charges for a unit, e.g. shipping costs.
Corresponds to the JSON property additionalCharges
14572 14573 14574 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 14572 def additional_charges @additional_charges end |
#unit_price ⇒ Google::Apis::ContentV2_1::Price
[required] Pre-tax or post-tax price of the unit depending on the locality of
the order.
Corresponds to the JSON property unitPrice
14578 14579 14580 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 14578 def unit_price @unit_price end |
#unit_price_taxes ⇒ Array<Google::Apis::ContentV2_1::UnitInvoiceTaxLine>
Tax amounts to apply to the unit price.
Corresponds to the JSON property unitPriceTaxes
14583 14584 14585 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 14583 def unit_price_taxes @unit_price_taxes end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
14590 14591 14592 14593 14594 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 14590 def update!(**args) @additional_charges = args[:additional_charges] if args.key?(:additional_charges) @unit_price = args[:unit_price] if args.key?(:unit_price) @unit_price_taxes = args[:unit_price_taxes] if args.key?(:unit_price_taxes) end |