Class: Google::Apis::ContentV2_1::UnitInvoice

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ UnitInvoice

Returns a new instance of UnitInvoice.



14896
14897
14898
# File 'lib/google/apis/content_v2_1/classes.rb', line 14896

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

Instance Attribute Details

#additional_chargesArray<Google::Apis::ContentV2_1::UnitInvoiceAdditionalCharge>

Additional charges for a unit, e.g. shipping costs. Corresponds to the JSON property additionalCharges



14881
14882
14883
# File 'lib/google/apis/content_v2_1/classes.rb', line 14881

def additional_charges
  @additional_charges
end

#unit_priceGoogle::Apis::ContentV2_1::Price

[required] Pre-tax or post-tax price of one unit depending on the locality of the order. Note: Invoicing works on a per unit basis. The unitPrice is the price of a single unit, and will be multiplied by the number of entries in shipmentUnitId. Corresponds to the JSON property unitPrice



14889
14890
14891
# File 'lib/google/apis/content_v2_1/classes.rb', line 14889

def unit_price
  @unit_price
end

#unit_price_taxesArray<Google::Apis::ContentV2_1::UnitInvoiceTaxLine>

Tax amounts to apply to the unit price. Corresponds to the JSON property unitPriceTaxes



14894
14895
14896
# File 'lib/google/apis/content_v2_1/classes.rb', line 14894

def unit_price_taxes
  @unit_price_taxes
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



14901
14902
14903
14904
14905
# File 'lib/google/apis/content_v2_1/classes.rb', line 14901

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